Spring配置文件中数据库配置



            class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        
            classpath:init.properties
        

    

   
   
       
            ${datasource.driverClassName}
       

       
           ${datasource.url}
       

       
           ${datasource.username}
       

       
           ${datasource.password}
       

       
           ${c3p0.acquireIncrement}
       

       
           ${c3p0.initialPoolSize}
       

       
           ${c3p0.minPoolSize}
       

       
           ${c3p0.maxPoolSize}
       

       
           ${c3p0.maxIdleTime}
       

       
           ${c3p0.idleConnectionTestPeriod}
       

       
           ${c3p0.maxStatements}
       

       
           ${c3p0.numHelperThreads}
       

 

            class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        
            
        

        
            
                com/hwtx/hibernate/hbm/Login.hbm.xml
            

        

        
            
                
                    ${hibernate.dialect}
                

                
                    ${hibernate.show_sql}
                

                
                    ${hibernate.jdbc.fetch_size}
                

                
                    ${hibernate.jdbc.batch_size}
                

               
            

        

    

        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        
        
        

    


 
   
 



 
   
 

 
   
 



    
        
    

    
        
                  PROPAGATION_REQUIRED
                 PROPAGATION_REQUIRED
                  PROPAGATION_REQUIRED
                        PROPAGATION_REQUIRED
                        PROPAGATION_REQUIRED
                        PROPAGATION_REQUIRED
                        PROPAGATION_REQUIRED
        

    



        
            
        



        
            
        



    
        
    



    
        
    




init.properties文件

datasource.type=mysql
datasource.driverClassName=com.mysql.jdbc.Driver
datasource.url=jdbc:mysql://localhost:3306/login?useUnicode=true&characterEncoding=UTF-8
datasource.username=root
datasource.password=123

datasource.maxActive=10
datasource.maxIdle=2
datasource.maxWait=120000
datasource.whenExhaustedAction=1
datasource.validationQuery=select 1 from dual
datasource.testOnBorrow=true
datasource.testOnReturn=false

c3p0.acquireIncrement=3
c3p0.initialPoolSize=3
c3p0.idleConnectionTestPeriod=900
c3p0.minPoolSize=2
c3p0.maxPoolSize=50
c3p0.maxStatements=100
c3p0.numHelperThreads=10
c3p0.maxIdleTime=600

hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect
#hibernate.dialect=org.hibernate.dialect.MySQLMyISAMDialect
#hibernate.dialect=org.hibernate.dialect.MySQLDialect
hibernate.jdbc.batch_size=25
hibernate.jdbc.fetch_size=50
hibernate.show_sql=true
hibernate.connection.release_mode=after_transaction

#bbscs.isloadconfig=false
#bbscs.safePath=C:/safe/

#cache.config=oscache.properties
#cacheup.config=oscache_up.properties
#cachefl.config=oscache_fl.properties

你可能感兴趣的:(WEB)