@CreationTimestamp和@UpdateTimestamp不在Kotlin工作

时间:2017-12-03 11:07:15

标签: spring kotlin spring-data spring-data-jpa

这是我的Tag和Post Entity类:

@Entity
class Tag(
        @get:NotBlank
        @Column(unique = true)
        val name: String = "",
        val description: String = ""
) {

    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    val id: Int? = null


    @ManyToMany(mappedBy = "tags")
    val posts: MutableSet<Post> = mutableSetOf()

    @CreationTimestamp
    lateinit var createDate: Date

    @UpdateTimestamp
    lateinit var updateDate: Date

    fun addPost(post: Post) {
        this.posts.add(post)
        post.tags.add(this)
    }


}



@Entity
class Post(
        @get:NotBlank
        var name: String = "",
        val content: String = ""
) {
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    val id: Int? = null
    @ManyToMany
    @Cascade(CascadeType.ALL)
    val tags: MutableSet<Tag> = mutableSetOf()

    @CreationTimestamp
    @Temporal(TemporalType.TIMESTAMP)
    lateinit var createDate: Date

    @UpdateTimestamp
    @Temporal(TemporalType.TIMESTAMP)
    lateinit var updateDate: Date


    fun addTag(tag: Tag) {
        this.tags.add(tag)
        tag.posts.add(this)
    }
}

查询:

val post1 = Post( "Post 1", "Post 1 content");
val post2 = Post( "Post 2", "Post 2 content");
var tag = Tag( "news", "Tag description")
post1.addTag(tag)
post2.addTag(tag)
em.persist(post1)
em.persist(post2)
em.remove(post1)
em.flush()

但是,createDate和updateDate返回null(标记和发布): enter image description here

我将此代码转换为Java并且工作正常

Kotlin版本:1.2-M2

springBootVersion:&#39; 2.0.0.M7&#39;

2 个答案:

答案 0 :(得分:10)

问题可能存在于这些注释不限于它们应该注释的内容。这意味着kotlin并不确切知道将它们放在最终字节码中的位置。

要获得与java生成的字节码相同的字节码,您需要指定相关注释的注释目标:

@field:CreationTimestamp
lateinit var createDate: Date

答案 1 :(得分:0)

上下文不足以提供任何有意义的答案。

您必须提供更多上下文,特别是应用程序服务器,其版本,甚至是此特定用例的代码。首先,我建议首先检查相同的Java代码是否有效。

到目前为止,我最好的猜测是,您使用Spring Data JPA,@CreationTimestamp@UpdateTimestamp是特定于Hibernate的。