grails 中有审计跟踪的标准方法吗?
是否有 grails 插件或标准方法来管理域的 created_by
、created_on
、updated_by
、updated_on
字段目的?
Is there a grails plugin or standard way of managing the created_by
, created_on
, updated_by
, updated_on
fields for a domain object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将 dateCreated 和 lastUpdated 声明为 Date,它们将由 grails 自动维护。
您可以使用 Grails 审核日志记录插件 在不同的安全性下记录经过身份验证的用户系统。
If you declare dateCreated and lastUpdated as Date they wil be maintained automatically by grails.
You can use the Grails Audit Logging Plugin to log the authenticated user under different security systems.