首页 > web 连接池配置

web 连接池配置

TOMCAT J2EE项目连接池配置

web 项目的 web.xml

    <web-app>

 <resource-ref>

    <description>DB Connectiondescription>

    <res-ref-name>jdbc/oracleres-ref-name>

    <res-type>javax.sql.DataSourceres-type>

    <res-auth>Containerres-auth>

  resource-ref>

web-app>

 

Eclipse 下下面tomcat server 文件:

 

Server.xml

 

 

 

    <GlobalNamingResources><Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/><Resource auth="Container" driverClassName="oracle.jdbc.driver.OracleDriver" maxActive="50" maxWait="5000" maxldle="10" name="jdbc/oracle" password="titi123love" type="javax.sql.DataSource" url="jdbc:oracle:thin:@127.0.0.1:1521:xe" username="titi"/> GlobalNamingResources>

 

 

 

Content.xml

  <Resource auth="Container" driverClassName="oracle.jdbc.driver.OracleDriver" maxActive="50" maxWait="5000" maxldle="10" name="jdbc/oracle" password="titi123love" type="javax.sql.DataSource" url="jdbc:oracle:thin:@127.0.0.1:1521:xe" username="titi"/> 

转载于:https://www.cnblogs.com/cici-new/p/3965591.html

更多相关:

  • 在CentOS 6.3下安装完Oracle 10g R2,重开机之后,你会发现Oracle没有自行启动,这是正常的,因为在Linux下安装Oracle的确不会自行启动,必须要自行设置相关参数,首先先介绍一般而言如何启动oracle。 一、在Linux下启动Oracle 登录到CentOS,切换到oracle用户权限 # su – or...

  • OCRCONFIG工具主要功能是备份、恢复ocr的。虽然用oracle用户可以直接运行ocrconfig,但是大部分命令还需要root用户才有权限执行:bash-2.03$ ocrconfig名称:       ocrconfig - Oracle集群注册表的配置工具。概要:       ocrconfig [option]    ...

  • .NET连接ORACLE数据库的方法就目前有3种: 1.OLEDB的方式,这种方式要求你要安装oracle client,这两年来做的关于oracle数据库的,我都采用这种方式,虽然连接的速度慢了一点,但是用起来是蛮顺手的,基本能满足要求,连接字串如下: "Provider=OraOLEDB.Oracle.1;Persist Secu...

  • 一,服务器系统 RedHat Enterprise Linux 5.0   二,数据库软件 Oracle10g (10.2.0)   三,硬件基本需求(命令查看需求如图) 内存/51...

  • 一、 The JDBC (Java Database Connectivity) API helps a Java program to access a database in a standard way . 这句话的意思说明了JDBC是用来干什么的:帮助java程序去访问数据库的。 简而言之:jdbc是用来给程序访问数据库的。...