hibernate学习笔记3

本文介绍了一个使用Hibernate框架实现的学生信息类及其ID卡类的映射配置。通过定义Student和StuIdCard类及其属性,展示了如何将这些Java对象与数据库表进行映射。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

public class Student {   
    private int id;
    private String name;
    
    private int age;
    private String sex;
    private boolean good;
    public boolean isGood() {
        return good;
    }
    public void setGood(boolean good) {
        this.good = good;
    }
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    public String getSex() {
        return sex;
    }
    public void setSex(String sex) {
        this.sex = sex;
    }

}


<hibernate-mapping>
    <class name="com.bjsxt.hibernate.Student" dynamic-update="true">//dynamic-update (可选, 默认为 false): 指定用于UPDATE 的SQL将会在运行时动态生成,并且只更新那些改变过的字段。
        <id name="id">
            <generator class="native"></generator>
        </id>
        
        <property name="name"></property>
        <property name="age" />
        <property name="sex" />
        <property name="good" type="yes_no"></property>
    </class>
    
</hibernate-mapping>



public class StuIdCard {
    private int id;
    private String num;
    private Student student;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getNum() {
        return num;
    }
    public void setNum(String num) {
        this.num = num;
    }
    public Student getStudent() {
        return student;
    }
    public void setStudent(Student student) {
        this.student = student;
    }
    
}


<hibernate-mapping>
    <class name="com.bjsxt.hibernate.StuIdCard">
        <id name="id">
            <generator class="native"></generator>
        </id>
        
        <property name="num"/>
        <many-to-one name="student" column="studentId" unique="true"></many-to-one>  //unique (可选 - 默认是 false):表明组件映射的所有字段上都有唯一性约束
    </class>
    
</hibernate-mapping>




    Student s = new Student();
        
        s.setAge(8);
        s.setGood(false);
        s.setName("zhansan");
        s.setSex("man");
        
    
        StuIdCard sc = new StuIdCard();
        sc.setNum("111");
        sc.setStudent(s);
        
        
        Session session = sessionFactory.getCurrentSession();
        session.beginTransaction();
        session.save(s);
        session.save(sc);
        session.getTransaction().commit();



14:45:56,937  INFO org.hibernate.tool.hbm2ddl.SchemaExport:154 - Running hbm2ddl schema export
14:45:56,953 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:170 - import file not found: /import.sql
14:45:56,953  INFO org.hibernate.tool.hbm2ddl.SchemaExport:179 - exporting generated schema to database
14:45:56,953 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - alter table StuIdCard drop foreign key FKD3A449FF76CCDAE1
14:45:57,125 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - drop table if exists StuIdCard
14:45:57,156 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - drop table if exists Student
14:45:57,156 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - create table StuIdCard (id integer not null auto_increment, num varchar(255), studentId integer unique, primary key (id))
14:45:57,218 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - create table Student (id integer not null auto_increment, name varchar(255), age integer, sex varchar(255), good char(1), primary key (id))
14:45:57,265 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - alter table StuIdCard add index FKD3A449FF76CCDAE1 (studentId), add constraint FKD3A449FF76CCDAE1 foreign key (studentId) references Student (id)
14:45:57,343  INFO org.hibernate.tool.hbm2ddl.SchemaExport:196 - schema export complete
14:45:57,390  INFO org.hibernate.tool.hbm2ddl.SchemaExport:154 - Running hbm2ddl schema export
14:45:57,390 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:170 - import file not found: /import.sql
14:45:57,390  INFO org.hibernate.tool.hbm2ddl.SchemaExport:179 - exporting generated schema to database
14:45:57,406 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - alter table StuIdCard drop foreign key FKD3A449FF76CCDAE1
14:45:57,484 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - drop table if exists StuIdCard
14:45:57,500 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - drop table if exists Student
14:45:57,500 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - create table StuIdCard (id integer not null auto_increment, num varchar(255), studentId integer unique, primary key (id))
14:45:57,546 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - create table Student (id integer not null auto_increment, name varchar(255), age integer, sex varchar(255), good char(1), primary key (id))
14:45:57,609 DEBUG org.hibernate.tool.hbm2ddl.SchemaExport:303 - alter table StuIdCard add index FKD3A449FF76CCDAE1 (studentId), add constraint FKD3A449FF76CCDAE1 foreign key (studentId) references Student (id)
14:45:57,703  INFO org.hibernate.tool.hbm2ddl.SchemaExport:196 - schema export complete
Hibernate: insert into Student (name, age, sex, good) values (?, ?, ?, ?)
Hibernate: insert into StuIdCard (num, studentId) values (?, ?)


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值