数据库连接池以数据的方式体现,在tomcat中配置数据源的步骤有哪些

 我来答
badkano
2016-01-01 · 知道合伙人体育行家
badkano
知道合伙人体育行家
采纳数:144776 获赞数:885373
团长

向TA提问 私信TA
展开全部
server.xml中的配置
<Context docBase="XXX" path="/XXX" reloadable="true" source="com.ibm.wtp.web.server:XXX">
<Resource auth="Container"
driverClassName="com.mysql.jdbc.Driver" maxActive="10"
maxIdle="10" maxWait="-1"
name="jdbc/ifcp" password="123"
type="javax.sql.DataSource" url="jdbc:mysql://localhost:3306/XXX?charactorEncoding=utf8"
username="root"
removeAbondoned="true"
/>
</Context>
其中XXX是你的项目路径
web.xml好像不用特别的配置吧。如果需要可以加入下面的
<resource-ref>
<description>Mysql Datasource example</description>
<res-ref-name>jdbc/ifcp</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope> Unshareable</res-sharing-scope>
</resource-ref>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式