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 have to create the following files:
Entity
EntityDao
EntityDaoImpl
EntityService
EntityServiceImpl
All of the files except for the Entity.java file (say User.java or Product.java etc) are pretty much something that could be automatically generated.
Is there anything out there that can help generate these files (in the correct folders)?