如何使用EJB创建一个宁静的服务?

时间:2015-05-09 19:33:06

标签: java entity-framework

我的数据库中有三个表,它们是相关的。 我从表和会话ejb bean创建实体/ 实体代码的一部分: 实体:类别

private integer CatId;
privete string CatName ;
...
private List<CategoryAttribute> CatAttList;
private List<Products> ProductList;
//getters and setters

实体:产品

private integer ProId;
private string ProName;
...
private Categories categories
// getters and setters

实体:CategoryAttribute

private integer CatAttId;
private string CatAttName ;
...
private Categories categories;
//getters and setters

我可以使用函数“public List<Products> getProductList()”和“public List <CategoryAtteribute> getCatAttList()”来访问两个Products表和CategoryAtteribute的字段和值吗?(不在表中搜索,因为我有很多数据)我的表格怎么样?

每个类别都有许多CategoryAtteribute和Product。

0 个答案:

没有答案