0

我有一个连接到不同MySQL数据库的 Spring Boot 应用程序。我计划为这个应用程序添加连接池支持。Tomcat JDBC 连接池(默认 Spring 引导池)是否支持我的每个数据库的多个池?

4

1 回答 1

0

不确定这在 Spring Boot 下会有什么不同,但对于标准 Web 应用程序,您可以通过添加web.xml以下任意数量的方式在 Web 应用程序级别进行配置:

<resource-ref>
    <res-ref-name>jdbc/yourname</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
</resource-ref>

并在context.xml以下相应编号中:

<Resource name="jdbc/yourname" auth="Container" type="javax.sql.DataSource"
           maxActive="30"
           maxIdle="30"
           maxWait="2000"
           removeAbandoned="true"
           ...
于 2016-05-13T09:05:52.470 回答