Is there a better standard way to create getters and setters in Java?
It is quite verbose to have to explicitly define getters and setters for each variable. Is ther
There is also Spring Roo project with its @RooJavaBean annotation. It has also @RooToString and @RooHashCodeEquals or something like that. It generates in background an AspectJ file with proper methods.