是否有 Java 库使用注释来生成代码?
有谁知道使用 这篇文章自动生成标准Java类的标准对象方法toString()、equals()和hashcode()?
Is anyone aware of a library that uses the the techniques (annotations and classworking) described in this article for automatically generating the standard Object methods toString(), equals() and hashcode() for standard java classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,Lombok 项目就是这样做的。 请参阅 http://projectlombok.org 。 它不仅支持javac,还支持Eclipse。 因此这些方法不在源代码中,而是显示在大纲视图中。
Yes, project Lombok does this. See http://projectlombok.org . It not only supports javac, but also Eclipse. So the methods are not in the source code, but are displayed in the outline view.
我当然还没有看到这一点,而且我不太确定从中可以获得什么价值。 我发现在搜索日志文件时,自动生成
toString
通常不是您想要的,并且大多数 IDE 都会有工具允许您生成hashCode
和equals
实现,尽管这些实现不会自动反映类中的任何架构修改。实现此功能有 2 个选项:
I certainly haven't seen this and I'm not really sure what value would be gained from it. I find that automatic
toString
generation is not usually what you want when scouring log files and most IDEs will have tools to allow you to generatehashCode
andequals
implementations, although granted these do not automatically reflect any schema modifications within your class.There would be 2 options for implementing this: