我在同一个tomcat上部署了两个spring boot应用程序,两个应用程序都有相同的数据源。
I get InstanceAlreadyExistsException: org.apache.tomcat.jdbc.pool.jmx:name=dataSourceMBean,type=ConnectionPool .
我已经设置了
endpoints.jmx.domain = MyApp的
endpoints.jmx.uniqueNames =真。
但我仍然得到错误。任何建议
答案 0 :(得分:0)
This is how I could solve the problem.
https://github.com/spring-cloud/spring-cloud-config/issues/118
endpoints.jmx.domain=dev
endpoints.jmx.unique-names=true
spring.jmx.default-domain=dev
spring.application.name=dev
endpoints.jmx.domain=dev2
endpoints.jmx.unique-names=true
spring.jmx.default-domain=dev2
spring.application.name=dev2