介绍了hibernate的入门有一些基本常用的事例

源代码在线查看: user.java

软件大小: 17462 K
上传用户: qingmei_changle
关键词: hibernate
下载地址: 免注册下载 普通下载 VIP

相关代码

				//$Id: User.java,v 1.1 2005/03/11 17:05:18 oneovthafew Exp $
				package org.hibernate.test.idbag;
				
				import java.util.ArrayList;
				import java.util.List;
				
				/**
				 * @author Gavin King
				 */
				public class User {
					private String name;
					private List groups = new ArrayList();
					
					User() {}
					
					public User(String name) {
						this.name = name;
					}
				
					public String getName() {
						return name;
					}
					
				
					void setName(String name) {
						this.name = name;
					}
				
					public List getGroups() {
						return groups;
					}
					
					void setGroups(List groups) {
						this.groups = groups;
					}
					
				}
							

相关资源