mybatis sqlite 配置



expression="org.springframework.stereotype.Controller" />


  
   
 


 
 
 
                 /WEB-INF/classes/dbconfig.properties  
           
 
       
 
 


 
         
           
           
           
           
           
           
   
         
         
         
         
         
         
           
   
         
         
           
           
           
           
           
         
         
         
         
         
            
         
 



          rollback-for="java.lang.Exception"/>
          rollback-for="java.lang.Exception" />
          rollback-for="java.lang.Exception" />
          rollback-for="java.lang.Exception" />













   
       
       
       
   

    
   



dbType=sqlite  
driverClassName=org.sqlite.JDBC  
#url=jdbc:sqlite::resource:data/sysdat.db  
url=jdbc:sqlite:e:/sysdat.db
username=  
password=  
       
#filters:stat
   
filters:log4j
maxActive:20
initialSize:10
maxWait:60000
minIdle:10
maxIdle:15
   
timeBetweenEvictionRunsMillis:60000
#minEvictableIdleTimeMillis:300000
minEvictableIdleTimeMillis:25200000
   
validationQuery:SELECT 'x'
testWhileIdle:true
testOnBorrow:false
testOnReturn:false


maxOpenPreparedStatements:20
removeAbandoned:true
removeAbandonedTimeout:1800
logAbandoned:true


注意事项:

需要设置为0 或者注释掉否则报 resultset  closed 异常

数据库文件不要放入 classes 文件夹下以免引发tomcat 重启

你可能感兴趣的:(mybatis,sqlite)