兩種方式:
一、Tomcat服務器配置:
1、 把 <Resource name="jdbc/TestDB" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="root" password="sa" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/employee_manager?autoReconnect=true"/>
粘貼到Tomcat 6.0/conf context.xml 文件中的<Context></Context>
2、把 <resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
粘貼到web.xml 文件中的<web-app></ web-app >
3、把數據庫驅動文件放在Tomcat 6.0/lib 中
4、程序中應用:
public static Connection getConnection() {
DataSource ds;
InitialContext cxt ;
try{
cxt = new InitialContext();
ds = (DataSource) cxt.lookup( "java:/comp/env/jdbc/TestDB" );
con = ds.getConnection();
}catch(Exception e){
e.printStackTrace();
}
SqlServer2005和以上步驟一樣:但注意
url="jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=employee_manager"
?autoReconnect=true 應該刪除!
oracle中:
<Context>
<Resource
name="jdbc/ums"
type="javax.sql.DataSource"
username="neu"
password="oracle"
url="jdbc:oracle:thin:127.0.0.1:1521:ORACLE"
driverClassName="oracle.jdbc.driver.OracleDriver"
maxIdle="2"
maxWait="5000"
maxActive="4"/>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
第2步操作可跳過
適用於tomcat下所有工程
二、在工程中配置:
1、在WebRoot/META-INF中創建一個context.xml文件,內容如下:
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<Resource name="jdbc/ORACLE"
auth="Container"
type="javax.sql.DataSource"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@127.0.0.1:1521:orcl"
username="scott"
password="tiger"
maxActive="100"
maxIdle="30"
maxWait="10000" />
</Context>
2、使用代碼如下:
try{
InitialContext initContext = new InitialContext();
Context context = (Context)initContext.lookup("java:comp/env");
DataSource ds = (DataSource) context.lookup("jdbc/ORACLE");
conn = ds.getConnection();
System.out.println("通過連接池連接到數據庫。");
}catch(Exception e){
throw new ServletException(e);