开发者

Spring Roo Date Field with Current Timestamp

Most databases allow to have field with current tim开发者_StackOverflowestamp (act as creation timestamp), for example in MySQL:

CREATE TABLE t (ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP)

How to achieve this in Spring Roo? Can't find hint from Roo manual.

Thanks.


This would be created with:

field date --fieldName ts --type java.util.Date --persistenceType JPA_TIMESTAMP

This will add:

 @Temporal(TemporalType.TIMESTAMP) 

to the field, which should cause the auto-generator to create a TIMESTAMP field. If you want more control, you can always annotate the generated entity field further with

 @Column(name="ts", columnDefinition="TIMESTAMP DEFAULT CURRENT_TIMESTAMP")


This can be done as suggested by Simon, but it might be worth checking out a fuller solution.

Check out this Spring Roo Timestamp add-on. It adds 'created' and 'updated' timestamps to all entities marked with its annotation. https://github.com/rcaloras/spring-roo-addon-timestamp

(I created it, happy to answer questions or add additional features)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜