package com.mycompany.demo.bean;
public class Forum {
private int fid;
private String name;
private int isshow;
public int getIsshow() {
return isshow;
}
public void setIsshow(int isshow) {
this.isshow = isshow;
}
public Forum() {
super();
}
public Forum(String name) {
super();
this.name = name;
}
public int getFid() {
return fid;
}
public void setFid(int fid) {
this.fid = fid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + fid;
result = prime * result + ((name == null) ? 0 : name.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Forum other = (Forum) obj;
if (fid != other.fid)
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
return true;
}
}<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <!-- package:指定<class/>所在的包 --> <hibernate-mapping package="com.mycompany.demo.bean"> <!-- name:类名 table:表名 catalog:数据库名称,默认为hibernate.cfg.xml中配置的数据库名称 --> <class name="Forum" table="forum"> <meta attribute="class-description"> This class contains the forum detail. </meta> <!-- name:属性名 colum:列名 --> <id name="fid" type="int" column="fid"> <!-- increment:hibernate维护主键值 identity:数据库自增长 sequence:序列 native:根据不同的数据库选择生成策略 uuid:通过UUID算法生成,实际使用较多 assigned:手工设置 --> <generator class="native"/> </id> <!-- length:字节长度 type:字段类型,支持java和hibernate类型 not-null:非空约束 unique:唯一性约束 --> <property name="name" column="name" type="string" length="50" not-null="true" unique="false"/> <property name="isshow" column="isshow"></property> </class> </hibernate-mapping>
package com.mycompany.demo.bean;
public class ForumPost {
private int pid;
private String subject;
private Forum forum;
public Forum getForum() {
return forum;
}
public void setForum(Forum forum) {
this.forum = forum;
}
public int getPid() {
return pid;
}
public void setPid(int pid) {
this.pid = pid;
}
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((forum == null) ? 0 : forum.hashCode());
result = prime * result + pid;
result = prime * result + ((subject == null) ? 0 : subject.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ForumPost other = (ForumPost) obj;
if (forum == null) {
if (other.forum != null)
return false;
} else if (!forum.equals(other.forum))
return false;
if (pid != other.pid)
return false;
if (subject == null) {
if (other.subject != null)
return false;
} else if (!subject.equals(other.subject))
return false;
return true;
}
}<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <!-- package:指定<class/>所在的包 --> <hibernate-mapping package="com.mycompany.demo.bean"> <!-- name:类名 table:表名 catalog:数据库名称,默认为hibernate.cfg.xml中配置的数据库名称 --> <class name="ForumPost" table="forumpost"> <meta attribute="class-description"> This class contains the forumPost detail. </meta> <!-- name:属性名 colum:列名 --> <id name="pid" type="int" column="pid"> <!-- increment:hibernate维护主键值 identity:数据库自增长 sequence:序列 native:根据不同的数据库选择生成策略 uuid:通过UUID算法生成,实际使用较多 assigned:手工设置 --> <generator class="native"/> </id> <!-- length:字节长度 type:字段类型,支持java和hibernate类型 not-null:非空约束 unique:唯一性约束 --> <property name="subject" column="subject" type="string" length="50" not-null="true" unique="false"/> <!-- name:关联属性 column:关联属性在数据库对应的字段 class:关联属性所对应的类型 --> <many-to-one name="forum" class="Forum" column="fid" cascade="save-update"/> </class> </hibernate-mapping>
package com.mycompany.demo.util;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HbnUtil {
private static SessionFactory sessionFactory;
public static Session getSession(){
if(sessionFactory == null || sessionFactory.isClosed()){
sessionFactory = new Configuration().configure().buildSessionFactory();
}
return sessionFactory.getCurrentSession();
}
}<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE hibernate-configuration SYSTEM "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- 方言,可以从Hibernate核心jar(hibernate-core-x.x.x.Finall.jar) 文件中的or.hibernate.dialect包中找到相应的类,类的全名就是 --> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <!-- 驱动 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <!-- 数据库连接地址 --> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property> <!-- 用户名 --> <property name="hibernate.connection.username"> root </property> <!-- 密码 --> <property name="hibernate.connection.password"></property> <!-- create:每次都新创建,如果存在就删除 create-drop:创建新表,sessionFactory关闭,表会删除 update :表字段增加,会同步,字段减少不同步,数据改变会同步修改 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- 输出sql --> <property name="hibernate.show_sql">true</property> <!-- 格式化sql --> <property name="hibernate.format_sql">true</property> <!-- 事务环境一个线程对一个事务 thread:本地事务环境 jta:分布式事务环境 SpringSessionContext:用于ssh整合 --> <property name="hibernate.current_session_context_class">thread</property> <!-- 使用c3p0数据源 --> <property name="hibernate.connection.provider_class"> org.hibernate.c3p0.internal.C3P0ConnectionProvider</property> <!-- List of XML mapping files --> <mapping resource="com/mycompany/demo/bean/Forum.hbm.xml"/> <mapping resource="com/mycompany/demo/bean/ForumPost.hbm.xml"/> </session-factory> </hibernate-configuration>
package com.mycompany.demo.bean;
import org.hibernate.Session;
import org.junit.Before;
import org.junit.Test;
import com.mycompany.demo.util.HbnUtil;
public class ManageForum {
private Session session;
@Before
public void init(){
session = HbnUtil.getSession();
}
/*
* 双向关联-1对多(1:n)
*/
@Test
public void testOnoWayForManyToOne(){
try {
session.beginTransaction();
Forum forum = new Forum("OnoWayForManyToOne");
ForumPost forumPost = new ForumPost();
forumPost.setSubject("forumpost7");
forumPost.setForum(forum);
session.save(forumPost);
session.getTransaction().commit();
} catch (Exception e) {
session.getTransaction().rollback();
e.printStackTrace();
}
}
}本文出自 “素颜” 博客,谢绝转载!
原文地址:http://suyanzhu.blog.51cto.com/8050189/1911644