ssh 中使用c3p0 的连接池配置

 

applicationContext.xml 文件:

  
  
      
          
            com.mysql.jdbc.Driver  
          
          
            jdbc:mysql://192.168.3.110:3306/DBName?useUnicode=true&characterEncoding=GBK  
          
          
            root  
          
          
            root  
          
   
   
          
            5  
          
   
   
          
            30  
          
   
  
          
            10  
          
   
   
          
            60  
          
   
   
          
            5  
          
   
   
          
            0  
          
   
   
          
            60  
          
   
   
          
            30  
          
   
   
          
            true  
          
   
   
          
            false  
          
      
      
      
          
              
          
          
              
                com/xh/hibernate/vo/User.hbm.xml  
              
          
          
              
                org.hibernate.dialect.MySQLDialect  
                true  
                true  
                auto  
                true  
              
          
      
  


 

你可能感兴趣的:(JAVA)