tomcat中在server.xml文件的GlobalNamingResources标签中加入:
<Resource auth="Container"
driverClassName="com.mysql.jdbc.Driver"
maxActive="100"
maxIdle="30"
maxWait="10000"
name="mysqlDataSource"
password="root"
type="javax.sql.DataSource"
url="jdbc:mysql://127.0.0.1:3306/mybaits_test?useUnicode=true&characterEncoding=utf-8"
username="root"/>
在web.xml中加入:
<resource-ref> <description>MySQL DB Connection</description> <res-ref-name>mysqlDataSource</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
在spring的配置文件中加入jdni的数据源:
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName"> <value>java:comp/env/mysqlDataSource</value> </property> </bean>
完成