在Tomcat服务器下使用连接池连接Oracle数据库
程序员文章站
2023-11-22 15:27:58
下面介绍在tomcat服务器下使用连接池来连接数据库的操作 一:修改web.xml文件: 复制代码 代码如下:
下面介绍在tomcat服务器下使用连接池来连接数据库的操作
一:修改web.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="webapp_id" version="3.0">
<display-name>project</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<resource-ref>
<description>dbconnection</description>
<res-ref-name>siniteksirm</res-ref-name>
<res-type>javax.sql.datasource</res-type>
<res-auth>container</res-auth>
</resource-ref>
</web-app>
在web-app之间插入<resource-ref>这段代码。指定要是用的resource名称。
二:修改tomcat下的context.xml文件:
在context标签之间加入如下代码。
<resource name="siniteksirm" auth="container"
type="javax.sql.datasource"
driverclassname="oracle.jdbc.oracledriver"
url="jdbc:oracle:thin:@192.168.1.196:1521:orcl"
username="paxt"
password="paxt"
maxactive="20"
maxidle="10"
maxwait="-1"
testonborrow="true"
validationquery="select 1 from dual"/>
三:选择oracle的数据库驱动,加入到tomcat的lib包中。本项目中为:ojdbc14.jar.
四:提供一个jsp页面:
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%>
<%@ page import="javax.naming.context" %>
<%@ page import="javax.naming.initialcontext" %>
<%@ page import="java.sql.*" %>
<%@ page import="javax.sql.datasource" %>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>insert title here</title>
</head>
<body>
<%
datasource ds = null;
try{
context context = new initialcontext();
ds = (datasource)context.lookup("java:comp/env/siniteksirm");
connection conn = ds.getconnection();
preparedstatement pst = conn.preparestatement("select * from sdc_fundbase where rownum <= 2");
resultset rs = pst.executequery();
while(rs.next()){
out.println(rs.getstring("fund4"));
out.println("<br/>");
}
if(ds != null){
out.println("数据库连接");
}
}catch(exception e){
e.printstacktrace();
out.println("数据库连接失败");
}
%>
</body>
</html>
启动tomcat,这样就可以访问页面。
一:修改web.xml文件:
复制代码 代码如下:
<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="webapp_id" version="3.0">
<display-name>project</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<resource-ref>
<description>dbconnection</description>
<res-ref-name>siniteksirm</res-ref-name>
<res-type>javax.sql.datasource</res-type>
<res-auth>container</res-auth>
</resource-ref>
</web-app>
在web-app之间插入<resource-ref>这段代码。指定要是用的resource名称。
二:修改tomcat下的context.xml文件:
在context标签之间加入如下代码。
复制代码 代码如下:
<resource name="siniteksirm" auth="container"
type="javax.sql.datasource"
driverclassname="oracle.jdbc.oracledriver"
url="jdbc:oracle:thin:@192.168.1.196:1521:orcl"
username="paxt"
password="paxt"
maxactive="20"
maxidle="10"
maxwait="-1"
testonborrow="true"
validationquery="select 1 from dual"/>
三:选择oracle的数据库驱动,加入到tomcat的lib包中。本项目中为:ojdbc14.jar.
四:提供一个jsp页面:
复制代码 代码如下:
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%>
<%@ page import="javax.naming.context" %>
<%@ page import="javax.naming.initialcontext" %>
<%@ page import="java.sql.*" %>
<%@ page import="javax.sql.datasource" %>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>insert title here</title>
</head>
<body>
<%
datasource ds = null;
try{
context context = new initialcontext();
ds = (datasource)context.lookup("java:comp/env/siniteksirm");
connection conn = ds.getconnection();
preparedstatement pst = conn.preparestatement("select * from sdc_fundbase where rownum <= 2");
resultset rs = pst.executequery();
while(rs.next()){
out.println(rs.getstring("fund4"));
out.println("<br/>");
}
if(ds != null){
out.println("数据库连接");
}
}catch(exception e){
e.printstacktrace();
out.println("数据库连接失败");
}
%>
</body>
</html>
启动tomcat,这样就可以访问页面。
上一篇: oracle创建表的方法和一些常用命令
推荐阅读
-
在Tomcat服务器下使用连接池连接Oracle数据库
-
windwos下使用php连接oracle数据库的过程分享
-
PHP没有数据库连接池怎么破?PHP环境下使用Nginx ngx_http_limit_req_module模块的高负载解决方案
-
Tomcat下配置MySQL数据库连接池
-
在Tomcat服务器下使用连接池连接Oracle数据库
-
使用JAVA中的动态代理实现数据库连接池 JavaSQLJDBC应用服务器互联网
-
WINDOWS下使用DOS命令行连接oracle数据库
-
oracle/mysql连接德鲁伊数据库连接池和使用dbutils第三方jar包简化dao层实现增删改查
-
Tomcat数据库连接池的配置与使用_MySQL
-
windwos下使用php连接oracle数据库的过程分享_php实例