作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下用户表对象和实体类:
object UserTable : IntIdTable() {
val name = varchar("name", 256)
}
class User(id: EntityID<Int>): IntEntity(id) {
companion object : IntEntityClass<User>(UserTable)
val name by UserTable.name
}
User
实例,然后插入呢?据我所知,
UserData
数据类,然后手动将字段复制过来。
data class UserData {
var id: Int?
var name: String?
}
fun main() {
val data = Gson().fromJson<UserData>("...", UserData::class.java)
val user = User.new {
name = data.name
}
}
最佳答案
Exposed 不允许自己创建 DAO 对象,因为您总是需要传递 EntityID
给构造函数。但是,Jackson supports reading an existing object .所以,你可以这样写:
transaction {
User.new {
mapper.readerForUpdating(this).readValue(json)
}
}
mapper
像这样:
val mapper by lazy {
val mapper = jacksonObjectMapper()
mapper.setAnnotationIntrospector(object : JacksonAnnotationIntrospector() {
override fun hasIgnoreMarker(m : AnnotatedMember)
= (m.getDeclaringClass() == IntEntity::class.java)
|| (m.getDeclaringClass() == Entity::class.java)
|| super.hasIgnoreMarker(m)
})
mapper
}
@JsonProperty
委托(delegate)属性上的注释,但您必须使用
@get:JsonProperty
.
build.gradle
文件(如果您不使用 gradle,则必须使该代码适应您的构建系统):
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.0"
关于json - 暴露: How to parse JSON into an Entity class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48158291/
我是一名优秀的程序员,十分优秀!