mySQL:
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="root"
password=""
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost/test" />
(1)以上是在tomcat6.x下进行的配置的 把上面那段代码放在tomcat/conf/context.xml中
(2)在tomcat5.x及以前的版本下:
如果没有发现context.xml,就在server.xml的中中加入:
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="root"
password="root"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost/test" />
使用説明:
在web.xml中加上:
DB Connection
jdbc/TestDS
javax.sql.DataSource
Container
基本就可以使用了!
阅读(795) | 评论(0) | 转发(0) |