读书人

JNDI tomcat6 配备Mysql的数据池

发布时间: 2012-10-17 10:25:47 作者: rapoo

JNDI tomcat6 配置Mysql的数据池

在Tomcat 6.0\conf\context.xml中

<?xml version='1.0' encoding='utf-8'?>

<Context>

?? ?<WatchedResource>WEB-INF/web.xml</WatchedResource>

<Resource

?name="jdbc/exam"

?auth="Container"

?type="javax.sql.DataSource"?

driverClassName="com.mysql.jdbc.Driver"

?maxIdle="2"

?maxWait="5000"?

url="jdbc:mysql://localhost:3306/exam?useUnicode=true&characterEncoding=gbk"

?username="root"

?password="root"

?maxActive="20" />?

</Context>

---------------------------------------------

&??&?的转义字符

在xml文件中写成:

url="jdbc:mysql://localhost:3306/exam?useUnicode=true&characterEncoding=gbk"

在java类中写成:

url="jdbc:mysql://localhost:3306/exam?useUnicode=true&characterEncoding=gbk"

读书人网 >Mysql

热点推荐