tomcat 配置文件conf/content.xml 

<content></content>里加入
Java代码 tomcat jndi数据库连接池配置 _jndi tomcat jndi数据库连接池配置 _jndi_02
  1. <Resource name="jdbc/testdb" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30"
  2. maxWait="10000"
  3. username="user" password="123456"
  4. driverClassName="com.microsoft.jdbc.sqlserver.SQLServerDriver"
  5. url="jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=dbname" />


项目配置文件WEB-INF/web.xml
Java代码 tomcat jndi数据库连接池配置 _jndi tomcat jndi数据库连接池配置 _jndi_02
  1. <web-app version="2.4"
  2. xmlns="http://java.sun.com/xml/ns/j2ee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
  5. http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
  6. <resource-ref>
  7. <description>DB Connection</description>
  8. <res-ref-name>jdbc/testdb</res-ref-name>
  9. <res-type>com.microsoft.sqlserver.jdbc.SQLServerDriver</res-type>
  10. <res-auth>Container</res-auth>
  11. </resource-ref>
  12. </web-app>


项目src/conf.properties文件配置
driver.sqlserver=net.sourceforge.jtds.jdbc.Driver
dbjndi.read.default=java:comp/env/jdbc/testdb
dbjndi.write.default=java:comp/env/jdbc/testdb
在tomcat 的lib加入相应包
mssql包有3个:msbase,mssqlserver,msutil