1.tomcat 中content.xml 配置
<Resource name="prescription_nb" auth="Container" type="javax.sql.DataSource"
maxActive="10" maxIdle="3" maxWait="20"
username="root" password="" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://10.1.64.189:3306/db_nb?useUnicode=true"/>
2.项目中 web.xml 中的配置(可省略)
<resource-ref>
<description>DB Connection</description>
<res-ref-name>prescription_nb</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
3.spring 中使用
<jee:jndi-lookup id="dataSource" jndi-name="prescription_nb" />
4.java 程序使用
DataSource ds=(DataSource) context.lookup("java:comp/env/prescription_nb");
Connection connection=ds.getConnection();
tomcat数据源的配置及其使用方法
最新推荐文章于 2020-03-16 09:21:32 发布
本文详细介绍了如何在Tomcat中配置DataSource,包括content.xml中的具体参数设置,web.xml中的资源引用配置,以及Spring和Java程序中如何使用这些配置来获取数据库连接。

182

被折叠的 条评论
为什么被折叠?



