Reputation: 31
Does anyone know if there are any eclipse plug-ins that can generate jsp's(using EL) from pojo's after using JPA in eclipse EE?
Thanks, Eric
Upvotes: 3
Views: 1964
Reputation: 713
You can try Telosys (see http://www.telosys.org) a simple code generator for scaffolding.
This tool is provided as an Eclipse plugin (among others).
If necessary, it's possible to adapt the templates in order to generate pure JSP
Upvotes: 3
Reputation: 3626
I would suggest to look into JBoss Forge and Spring Roo. Both of these are rapid prototype and scaffolding tools similar to Rails scaffolding. They are executed from command line (don't be afraid it is very simple) but there are plugins for both of them for eclipse. A quote from Forge :
A core framework for rapid-application development in a standards-based environment. Plugins / incremental project enhancement for Java EE, and more.
Generally it is simpler to go with Forge if you are more on Java EE 6 stack and to go with Spring Roo if you are using Spring. Currently Forge is lot cleaner conceptually since it does not use AspectJ or any other similar black magic.
Upvotes: 0