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
Unfortunately I think the answer is no. It seems like the capability could be there... They have configurable file templates, but AFAIK the templates are locking into the create menu, which means one file at a time.
What you are suggesting is very possible with Velocity or Freemarker (or any other template engine.) You should be able to find examples out there that do what you are looking for by searching with those tool names.
Finally this is another topic, but I'll just suggest that if you find yourself doing a lot of repetitive code. Maybe there is another way to setup up your project (annotations, dependency injection) or another framework (Hibernate w Seam or JPA + EJB) that might be easier for what you are trying to do. Worth investigating.