Tomcat6.x Session对象的持久化

废话不说,估计原理你懂,就是懒得配置,才来网上搜代码:

给你:

 

a默认StandardManager:

在根目录:work中的Sessions.ser就是了;

 

b我们自己用的是PresisitentManager:

1FileStore(与默认的差不多)

2JDBCStore

 

 

b好在哪里呢?

灵活,可控制内存中的session数量。

 

配置单:

FileStore:

< Context  path ="/helloapp"  docBase ="helloapp"  debug ="0"  reloadable ="true" >
    < Manager  className ="org.apache.catalina.session.PersistentManager"  debug ="0"  saveOnRestart ="true"  
          maxActiveSessions
="-1"  minIdleSwap ="-1"  maxIdleSwap ="-1"  maxIdleBackup ="-1"   >
    < Store  className ="org.apache.catalina.session.FileStore"  directory ="mydir" />
    </ Manager >
</ Context >
JDBCStore:
Store calssName="org.apache.catalina.JDBCStore" driverName="com.mysql.jdbc.Driver" 
    connectionURL
="jdbc:mysql://localhost/tomsessionDB?user=root&password=" 
    sessionTable
="tomcat_session" sessionIdCol="session_id" sessionDataCol="session_data" 
    sessionValidCol
="session_valid" sessionMaxInactiveCol="max_inactive" 
    sessionLastAccessedCol
="last_access" sessionAppCol="app_name" checkInterval="60" debug="99" />
Mysql的操作自己搞了啊!!!

你可能感兴趣的:(tomcat,mysql,session,jdbc,Access)