共计 877 个字符,预计需要花费 3 分钟才能阅读完成。
在 Tomcat 中设置 JNDI 数据源,可以按照以下步骤进行:
1、在 Tomcat 的 conf
文件夹中的 context.xml
文件中添加以下内容:
<Resource name="jdbc/myDataSource" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="your_username" password="your_password" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/mydatabase" />
其中 name
属性是 JNDI 名称,username
和 password
是数据库的用户名和密码,driverClassName
是数据库驱动类,url
是数据库连接的 URL。
2、在应用的 web.xml
文件中定义数据源的引用:
<resource-ref>
<description>My DataSource</description>
<res-ref-name>jdbc/myDataSource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
3、在应用中使用 JNDI 数据源:
Context initContext = new InitialContext();
Context envContext = (Context) initContext.lookup("java:comp/env");
DataSource ds = (DataSource) envContext.lookup("jdbc/myDataSource");
Connection conn = ds.getConnection();
通过以上步骤,就可以在 Tomcat 中设置和使用 JNDI 数据源了。
丸趣 TV 网 – 提供最优质的资源集合!
正文完