使用tomcat连接mysql数据库_Tomcat中配置MySQL数据库连接池

3.修改项目WEB-INF/web.xml 配置文件(若无,请新建),在“”之上添加如下代码:

DB Connection

jdbc/mysql

javax.sql.DataSource

Container

上步中若修改了数据源名此步中红色部分请保持与上步中的一致。

4.代码示例:index.jsp测试界面

pageEncoding="UTF-8"%>

Insert title here

Context initContext = new InitialContext();

Context envContext  = (Context)initContext.lookup("java:/comp/env");

DataSource ds = (DataSource)envContext.lookup("jdbc/mysql");

Connection conn = ds.getConnection();

Statement st = null;

ResultSet rs = null;

st = conn.createStatement();

String sql="select *from recorder where descid like '%tongcheng%'";

System.out.println(sql);

st = conn.createStatement();

rs = st.executeQuery(sql);

while(rs.next()){

System.out.println(rs.getString(1));

}

%>

通过1-3步就在Tomcat中配置好了MySQL的数据库连接池。

运行输出结果

select *from recorder where descid like '%tongcheng%'

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1446828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1445828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1444828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1443828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1442828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1441828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1440828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1439828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/mm/18-50/,1438828308831,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1447828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1446828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1445828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1444828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1443828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1442828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1441828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1440828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1439828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/ay/gg/18-50/,1438828309279,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1447828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1446828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1445828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1444828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1443828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1442828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1441828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1440828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1439828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/mm/18-50/,1438828309648,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1447828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1446828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1445828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1444828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1443828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1442828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1441828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1440828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1439828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/anqing/gg/18-50/,1438828309997,100000000

bbs    tongcheng    http://jiaoyou.58.com/ankang/mm/18-50/,1447828310465,100000000

bbs    tongcheng    http://jiaoyou.58.com/ankang/mm/18-50/,1446828310465,100000000

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值