So I have a spring mvc application, and I am noticing there is allot of repetitive code I am doing (I\'m newish to both java/spring).
Each time I create a new entity I h
Code generation is surprisingly easy, and IMO is best left out of the IDE equation. If you see an opportunity, create a quick tool using Velocity, FreeMarker, or J. Random templating solution until you figure out a better long-term solution, or it becomes unnecessary.
Also consider simple generics; it's often enough.