What are the best Java code generation tools or plugins to use in Eclipse?

后端 未结 12 2130
灰色年华
灰色年华 2021-01-30 23:43

I\'m aware of the built in code generation and refactoring one can do with the \"Source\" and \"Refactor\" menu items in Eclipse.

I also use the Commonclipse plugin to

12条回答
  •  孤城傲影
    2021-01-31 00:27

    Project Lombok enables you to effectively code in shorthand. For example, you can declare a class, add a lombok annotation, and it will automatically generate getters, setters, equals, hashCode, toString, and constructors.

提交回复
热议问题