bibernate练习
package domain; import java.util.List; import java.util.Map; import java.util.Set; public class Department { private int id; private String name; // private Map emps; // private List emps; private Set emps; // private Employee[] emps; // //public Map getEmps() { // return emps; // } // // public void setEmps(Map emps) { // this.emps = emps; // } public Set getEmps() { return emps; } public void s etEmps(Set emps) { this.emps = emps; } public int getId() { return id; } public void setId(int id) { this.id = id; } // public List getEmps() { // return emps; // } // // public void setEmps(List emps) { // this.emps = emps; // } public String getName() { return name; } public void setName(String name) { this.name = name; } } etEmps(Set emps) { this.emps = emps; } public int getId() { return id; } public void setId(int id) { this.id = id; } // public List getEmps() { // return emps; // } // // public void setEmps(List emps) { // this.emps = emps; // } public String getName() { return name; } public void setName(String name) { this.name = name; } }
文件列表
hb.zip
(预估有个73文件)
hibernate0
.project
386B
src
Many2One.java
3KB
domain
User.java
602B
Employee.hbm.xml
1KB
Department.java
937B
Department.hbm.xml
945B
Student.hbm.xml
517B
暂无评论