Tomcat中创建连接池怎么用
展开全部
主要用到jndi技术
javax.naming.Context cxt=new InitialContext();
Context envCtx = (Context) cxt.lookup("java:comp/env");
javax.sql.DataSource ds = (DataSource)
envCtx.lookup("jbbc/SIMPLE");
这样就获得了数据源对象
其中
web.xml文件配置:
<resource-ref>
<res-ref-name>jbbc/SIMPLE</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
jbbc/SIMPLE为tomcat中连接池的名称
javax.naming.Context cxt=new InitialContext();
Context envCtx = (Context) cxt.lookup("java:comp/env");
javax.sql.DataSource ds = (DataSource)
envCtx.lookup("jbbc/SIMPLE");
这样就获得了数据源对象
其中
web.xml文件配置:
<resource-ref>
<res-ref-name>jbbc/SIMPLE</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
jbbc/SIMPLE为tomcat中连接池的名称
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询