您知道将强制执行休眠最佳实践的 PMD 或 Checkstyle 规则吗?
例如,不要通过字符串操作来构建查询等。
For example, not to build queries by string manipulation, and the like.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
例如,不要通过字符串操作来构建查询等。
For example, not to build queries by string manipulation, and the like.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我不知道有任何此类检查,但如果您想走那条路,您可以选择 VonC 上面提供的选项,或者您可以采取不同的路径并查看 AspectJ 声明错误和/或声明警告。 主要区别在于,使用 AspectJ,您将能够在编译时强加这些规则。 无论如何,如果你更熟悉PMD,也许留在那片土地上会更好。
./亚历克斯
I'm not aware of any such checks, but if you want to go that road you either have the option presented above by VonC or you might take a different path and take a look at AspectJ declare error and/or declare warning. The main difference is that using AspectJ you'll be able to impose these rules upon compilation. Anyways, if you are more familiar with PMD maybe it would be better to stay on that land.
./alex
当您考虑 Hibernate 最佳实践(或那些 < a href="http://hibernatebp.blogspot.com/" rel="nofollow noreferrer">最佳实践),您会注意到它们与 Hibernate 配置(xml 文件)或查询相关。
这意味着您最好的选择是编写自定义 Chectyle 检查。
(因此是社区 Wiki 状态,因为这不是实际的直接答案)
When you consider Hibernate best practices (or those best practices), you notice they are related to Hibernate configuration (xml files), or queries.
That means your best bet is to write custom Chectyle checks.
(hence the Community Wiki status since this is not an actual direct answer)
貌似没有这样的文件...
looks there are no such files...