Giter Site home page Giter Site logo

Comments (6)

ov7a avatar ov7a commented on June 11, 2024 2

For serializing data class to HOCON it would be logical to make an inverse conversion: transform all property names to hyphen-case, unless exact name is specified by annotation.

from config4k.

mmorihiro avatar mmorihiro commented on June 11, 2024 2

Thank you for your advice. This change is quite big and may break compatibility. So, it will be implemented in version 4.

from config4k.

martintreurnicht avatar martintreurnicht commented on June 11, 2024 1

#56 addresses the deserializing aspect of this issue. For serialization I would suggest looking at the ConfigSyntax enum when implementing. According to HOCON standards, properties should be lowercase and hyphenated. It makes sense to serialize in the correct/strict format but have a more flexible deserializer

from config4k.

mmorihiro avatar mmorihiro commented on June 11, 2024

Nice idea! I think the API should be like below.

object ConfigOption {
  // Default value is camelCase, but it can be changed to hyphen-separated
  var keyType: ConfigKeyType = ConfigKeyType.CAMEL_CASE
}

enum class ConfigKeyType {
  CAMEL_CASE, HYPHEN_SEPARATED
}

How do you think, @ov7a?

from config4k.

ov7a avatar ov7a commented on June 11, 2024

In my experience, the common approach to this is to use annotations. (Take a look at jackson, for example).
As user, the most convenient approach for me would be automatic conversion - unless the name is explicitly specified through annotation, first try the exact same name, then try camelCase variant. This would also allow to rename properties.

key = {
    camelCaseProperty = value
    hyphen-case-propery  = value2
    trashy_value = value3 
}

data class MixedConfig(
    val camelCaseProperty: String, //exact name
    val hyphenCaseProperty: String, //converted automatically
    @ConfigName("trashy_value") //explicit name
    val annotatedProperty: String
)

from config4k.

ihostage avatar ihostage commented on June 11, 2024

Unfortunately, we don't have a resources for implement this feature, but if someone want to do that, PRs are welcome anytime! 😄

from config4k.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.