共计 3141 个字符,预计需要花费 8 分钟才能阅读完成。
一、Tomcat 配置 JNDI 资源
JNDI(Java Naming and Directory Interface),Java 命名和目录接口。
JNDI 的作用就是:在服务器上配置资源,然后通过统一的方式来获取配置的资源。
我们这里要配置的资源当然是连接池,这样项目中就可以通过统一的方式来获取连接池对象了。
1、导包
需将这三个 jar 包置于 Tomcat/lib/ 目录下:c3p0-0.9.5.2.jar、mchange-commons-java-0.2.11.jar、mysql-connector-java-5.1.44-bin.jar(Driver 实现类),此例连接的是 MySQL 数据库,如果连接的是 Oracle 还需 c3p0-oracle-thin-extras-0.9.5.2.jar。
2、配置 context.xml 及 web.xml 文件
apache-tomcat-9.0.0.M26/conf/context.xml 中添加第 14 到 25 行内容
<Context reloadable=”true”>
<!– Default set of monitored resources. If one of these changes, the –>
<!– web application will be reloaded. –>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<WatchedResource>WEB-INF/tomcat-web.xml</WatchedResource>
<WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>
<!– Uncomment this to disable session persistence across Tomcat restarts –>
<!–
<Manager pathname=”” />
–>
<!– 新配置内容 –>
<Resource auth=”Container”
description=”DB Connection”
driverClass=”com.mysql.jdbc.Driver”
maxPoolSize=”100″
minPoolSize=”2″
acquireIncrement=”2″
name=”jdbc/mysqlds-c3p0″
user=”root”
password=””
factory=”org.apache.naming.factory.BeanFactory”
type=”com.mchange.v2.c3p0.ComboPooledDataSource”
jdbcUrl=”jdbc:mysql://localhost:3306/mydb1″ />
</Context>
参数说明:
- name: 指定资源名称,这个名称可随便给,在获取资源时需要这个名称;
- factory: 用来创建资源的工厂,这个值基本是固定的,不用修改;
- type:资源的类型,我们要给出的类型是我们连接池的类型。
- 其他参数为资源的属性。
在项目中 web/WEB-INF/web.xml 文件中添加配置第 6 至 10 行内容
<?xml version=”1.0″ encoding=”UTF-8″?>
<web-app xmlns=”http://xmlns.jcp.org/xml/ns/javaee”
xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xsi:schemaLocation=”http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd”
version=”3.1″>
<resource-ref>
<res-ref-name>jdbc/mysqlds-c3p0</res-ref-name> <!– 与 context.xml 下的 Resources 的 name 属性一致 –>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>
二、获取资源
package servlet;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.sql.DataSource;
import java.io.IOException;
import java.sql.Connection;
import java.sql.SQLException;
@WebServlet(name = “AServlet”,urlPatterns = “/AServlet”)
public class AServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//1、创建 JNDI 的上下文
try {
Context ctx = new InitialContext();
//2、查询出入口
// Context envCtx = (Context) ctx.lookup(“java:comp/env”);
//3、再进行二次查询,找到我们的资源
// 使用的是名称与 <Resource> 元素的 name 对应
// DataSource dataSource = (DataSource) envCtx.lookup(“jdbc/mysqlds-c3p0”);
DataSource dataSource = (DataSource) ctx.lookup(“java:comp/env/jdbc/mysqlds-c3p0”);
Connection con = dataSource.getConnection();
System.out.println(con);
con.close();
} catch (NamingException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-10/147321.htm