将json模式动态转换为kotlin数据类



我有一个草案04格式的json模式(http://json-schema.org/draft-04/schema#)其用于定义配置。这些模式是基于使用输入动态创建的。

我需要将这个json模式传递给一个只接受kotlin类作为参数的方法。有没有办法将这个json模式转换为kotlin数据类?

基本上,我想要的是类似于www.jsonschema2pojo.org的功能,但我希望在方法调用中动态创建类。

示例模式:

{
"title": "Schema 1",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"age": {
"description": "Age in years",
"type": "integer",
"minimum": 0
}
},
"required": ["firstName", "age"]
}

您可以看看这个IntelliJ Idea插件是如何做到这一点的,并在您的应用程序中使用它们的库:https://github.com/wuseal/JsonToKotlinClass/blob/master/doc/LIBRARY.md

相关内容

  • 没有找到相关文章

最新更新