我有一个在 Tomcat 中运行的 Web 应用程序,它通过数据源连接到 Oracle 数据库。我一直在处理一些奇怪的行为,因为即使没有用户连接并且一旦应用程序启动,连接池也会满!当我检查正在执行的查询时,它似乎总是相同的:
select value$ from props$ where name = 'global_db_name'
Connection 的上下文是这样的:
<Context antiResourceLocking="true" crossContext="true" path="/taquillas">
<Resource auth="Container" driverClassName="oracle.jdbc.OracleDriver"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
jdbcInterceptors="org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;org.apache.tomcat.jdbc.pool.interceptor.StatementFinalizer"
jmxEnabled="true" url="jdbc:oracle:thin:@yyy.yyy.yyy.yyy:zzzz:ANNI"
username="xxxxxxxxx" name="jdbc/andrea" password="xxxxxxx"
type="javax.sql.DataSource" validationInterval="30000"
maxActive="50" minIdle="1" maxWait="10000" defaultAutoCommit="false"
initialSize="1" removeAbandonedTimeout="60"
removeAbandoned="true" validationQuery="SELECT 1 FROM DUAL"/>
</Context>
数据源是这样的:
public dbutilsHandler()
throws ClassNotFoundException, SQLException, NamingException {
this.gson = new GsonBuilder()
.setDateFormat("yyyy-MM-dd")
.serializeNulls().create();
InitialContext cxt;
cxt = new InitialContext();
this.ds = (DataSource) cxt.lookup("java:/comp/env/jdbc/andrea");
this.query = new QueryRunner(ds);
this.con = this.query.getDataSource().getConnection();
}
我确保没有任何连接处于打开状态,但我仍然不明白为什么会发生这种情况。帮助!