Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 NetBeans 7.4 中,它们是在项目菜单中使用 hibernate 和 JSF 时的一个选项 - “来自实体类的 JSF 页面”。我选择了一个实体类,然后它生成了许多包和许多类文件。这些究竟是什么以及这些文件的作用是什么?
这些究竟是什么以及这些文件的作用是什么?
它们是会话范围的控制器类和一些基本的 EJB。它们将允许您从数据库访问实体对象数据并将其持久化到数据库中。如果您有实体类、EJB 和托管的“支持”bean,则不需要这些通用控制器。
它们是MVC(模型视图控制器)用户界面范例中的“ C ” 。'V' 是您的 Facelet(.xhtml、.jsf 页面)。“M”是实体类。