共计 893 个字符,预计需要花费 3 分钟才能阅读完成。
要在 Tomcat 中配置 JNDI 资源,可以按照以下步骤进行:
1、打开 Tomcat 的 conf 目录,找到 context.xml 文件。
2、在 context.xml 文件中添加 Resource 元素来定义 JNDI 资源,示例如下:
<Resource name="jdbc/myDataSource"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/mydatabase"
username="root"
password="password"
maxActive="20"
maxIdle="10"
maxWait="-1"/>
3、在 web.xml 文件中引用 JNDI 资源,示例如下:
<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>
4、在代码中通过 InitialContext 对象查找 JNDI 资源,示例如下:
Context initContext = new InitialContext();
Context envContext = (Context) initContext.lookup("java:comp/env");
DataSource dataSource = (DataSource) envContext.lookup("jdbc/myDataSource");
5、确保在 web 应用程序的 WEB-INF 目录下的 web.xml 文件中定义正确的资源引用和 servlet 等信息。
6、重启 Tomcat 服务器,使配置生效。
通过以上步骤,就可以在 Tomcat 中成功配置 JNDI 资源并在代码中使用了。
丸趣 TV 网 – 提供最优质的资源集合!
正文完