javaguy
javaguy

Reputation: 4442

Template mechanism for web tier files

What is the most easy to way invoke a template for web tier files e.g. jsp, xhtml etc? Does any ide comes with such a template feature that I can select a field for a java bean and it will generate the form element of type <input>, or <radio> etc.

Upvotes: 0

Views: 100

Answers (1)

BalusC
BalusC

Reputation: 1109422

Netbeans has a JSF/Facelets CRUD generator which you can generate based on JPA entities. Those JPA entities in turn can be generated from an existing database table model.

Eclipse (for Java EE with WTP/Dali) can also autogenerate JPA entities, but not JSF/Facelets CRUD screens.

Upvotes: 2

Related Questions