共计 1086 个字符,预计需要花费 3 分钟才能阅读完成。
要配置数据源在 Tomcat 中,可以通过以下步骤:
1、在 Tomcat 的 conf
目录下创建一个新的文件,例如context.xml
,用来存储数据源的配置信息。
2、在 context.xml
文件中添加数据源的配置,例如:
<Resource name="jdbc/myDataSource" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="myUsername" password="myPassword"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/mydatabase"/>
这里是一个示例配置,其中包括数据源名称(jdbc/myDataSource
)、认证方式(auth="Container"
)、最大活动连接数(maxActive
)、最大空闲连接数(maxIdle
)、最大等待时间(maxWait
)、用户名(username
)、密码(password
)、驱动类名(driverClassName
)和数据库连接 URL(url
)。
3、在应用程序的 WEB-INF
目录下的 web.xml
中添加数据源的引用,例如:
<resource-ref>
<res-ref-name>jdbc/myDataSource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
这里是一个示例 resource-ref
配置,其中引用了之前在 context.xml
中定义的数据源。
4、在应用程序中使用 JNDI 来获取数据源,例如:
Context initContext = new InitialContext();
Context envContext = (Context) initContext.lookup("java:/comp/env");
DataSource dataSource = (DataSource) envContext.lookup("jdbc/myDataSource");
Connection connection = dataSource.getConnection();
这样就可以在应用程序中使用配置的数据源了。需要注意的是,配置数据源时还可以添加其他属性,具体可以参考 Tomcat 的文档。
丸趣 TV 网 – 提供最优质的资源集合!
正文完