2018-03-06

在hibernate配置文件中配置数据库连接池(c3p0)

  • 导入jar包:
    1. c3p0-0.9.5.2.jar;
    2. hibernate-c3p0-5.2.13.Final.jar
    3. mchange-commons-java-0.2.11.jar

hibernate.cfg.xml




    
    
        
        root
        123456
        com.mysql.jdbc.Driver
        jdbc:mysql:///hibernate5
    
        
        
        org.hibernate.dialect.MySQL5Dialect
        
        true
        
        true
        
        update
        
        true
        
        
        
        10
        
        5
        
        2
        
        
        2000
        
        2000
        
        10
        
        
        100
        
        30
        
        
         
        
    
    

拓展:配置中的其他属性(jdbc.fetch_size 和 jdbc.batch_size)

[图片上传失败...(image-1df4b9-1520318030742)]

获取源代码请点击我

你可能感兴趣的:(2018-03-06)