Tomcat6添加MySQL的JNDI数据源
1. 添加JNDI配置文件到工程下
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util">
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="java:comp/env/jdbc/myDataSource"/>
<property name="expectedType" value="javax.sql.DataSource"/>
</bean>
</beans>
2. 在Tomcat中添加数据库连接配置,具体位置是:Tomcat安装目录下/conf/context.xml
要注意的是:name要和上面Spring配置文件中的jndiName中java:comp/env的后半段对应。
<Resource name="jdbc/myDataSource" auth="Container" type="javax.sql.DataSource" password="test" username="test" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://192.168.229.97:3306/test" maxActive="100" maxIdle="30" maxWait="5000"/>
3. 将MySQL的JDBC驱动mysql-connector-java-5.1.6.jar添加到Tomcat的lib目录,否则Tomcat会报出找不到驱动类的异常。