01Hibernate配置环境

1.先添加hibernate所需要的包
在pom.xml中添加对应的依赖。依赖在http://mvnrepository.com/中查找,找到相应的hibernate比如

 

         

             

 于是导包结束后得到

    

01Hibernate配置环境_第1张图片

              
2.xml文件的配置



    
        
        com.mysql.jdbc.Driver
        jdbc:mysql://localhost:3306/testdata
        root
        123456




        
        1
        
        org.hibernate.dialect.MySQLDialect
        
        org.hibernate.cache.NoCacheProvider
        
        true
        
        create  
        
    





















你可能感兴趣的:(hibernate,hibernate)