共计 1112 个字符,预计需要花费 3 分钟才能阅读完成。
在 Tomcat 中配置数据源有多种方法,以下是其中两种常见的方法:
-
在 Tomcat 的 context.xml 文件中配置数据源:
在 Tomcat 的 /conf 目录下找到 context.xml 文件,在其中配置数据源的相关信息,例如:<Resource name="jdbc/myDataSource" auth="Container" type="javax.sql.DataSource" maxTotal="100" maxIdle="30" maxWaitMillis="10000" username="myUsername" password="myPassword" driverClassName="com.mysql.jdbc.Driver" url="jdbc//localhost:3306/myDatabase"/>
然后在 web 应用的 WEB-INF 目录下的 web.xml 文件中引用该数据源,例如:
<resource-ref> <description>My DataSource Reference</description> <res-ref-name>jdbc/myDataSource</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
-
使用 JNDI(Java Naming and Directory Interface)配置数据源:
在 Tomcat 的 /conf/server.xml 文件中配置数据源的 JNDI 信息,例如:<Resource name="jdbc/myDataSource" auth="Container" type="javax.sql.DataSource" maxTotal="100" maxIdle="30" maxWaitMillis="10000" username="myUsername" password="myPassword" driverClassName="com.mysql.jdbc.Driver" url="jdbc//localhost:3306/myDatabase"/>
然后在 web 应用的 META-INF/context.xml 文件中引用该数据源,例如:
<ResourceLink name="jdbc/myDataSource" global="jdbc/myDataSource" type="javax.sql.DataSource"/>
无论使用哪种方法配置数据源,一般都需要确保相关的数据库驱动程序已经包含在应用的类路径中。
丸趣 TV 网 – 提供最优质的资源集合!
正文完