Web层文件的模板机制
调用 Web 层文件(例如 jsp、xhtml 等)模板的最简单方法是什么?是否有任何 ide 具有这样的模板功能,我可以为 java bean 选择一个字段,它将生成 或
类型的表单元素代码>等
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Netbeans 有一个 JSF/Facelets CRUD 生成器,您可以根据 JPA 实体生成它。这些 JPA 实体又可以从现有的数据库表模型生成。
Eclipse(适用于带有 WTP/Dali 的 Java EE)还可以自动生成 JPA 实体,但不能自动生成 JSF/Facelets CRUD 屏幕。
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.