Hibernate配置文件详解

1.orm元数据(对象与表的映射配置文件)


    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">



    
    
        

        

                

            
        
        
        
        
        
        
        
        
        
        
        
    

对应的Customer表属性

private Long cust_id;          //客户编号(主键)
    private String cust_name;        //客户名称(公司名称)
    private String cust_user_id;     //负责人id
    private String cust_create_id;   //创建人id
    private String cust_source;      //客户信息来源
    private String cust_industry;    //客户所属行业
    private String cust_level;       //客户级别
    private String cust_linkman;     //联系人
    private String cust_phone;       //固定电话

    private String cust_mobile;      //移动电话

2.Hibernate主配置(hibernate.cfg.xml)


    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

    
    
         
        com.mysql.jdbc.Driver
        
        jdbc:mysql:///hibernate_01
        
        root
        
        123456
        
        org.hibernate.dialect.MySQLDialect
        
        
         
        true
        

        true

        
        4
        
        
        thread
       

        
        update
        
        
        
    


你可能感兴趣的:(Hibernate,熟记类)