我正在使用 win7-eclipse-tomcat7-mysql5。
首先,在 TOMCAT_DIRECTORY/conf/context.xml 中设置数据源资源
<Context>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<Resource name="jdbc/TestDB" auth="Container"
type="javax.sql.DataSource"
maxActive=100 maxIdle="30" maxWait="10000"
username="dev_id" password="dev_password"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/my_db_name" />
</Context>
在 ECLIPSE/MY_PROJECT/WebContent/WEB-INF/web.xml
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
设置后,我运行我的 eclipse tomcat 7.0 服务器。
然后在jconsole中找到maxActive。
为什么maxActive不能改变??请帮帮我....