具有相同数据源的多个SpringBoot应用程序

时间:2017-08-20 05:21:04

标签: spring tomcat spring-boot

我在同一个tomcat上部署了两个spring boot应用程序,两个应用程序都有相同的数据源。

I get InstanceAlreadyExistsException: org.apache.tomcat.jdbc.pool.jmx:name=dataSourceMBean,type=Co‌​nnectionPool . 

我已经设置了

  

endpoints.jmx.domain = MyApp的
  endpoints.jmx.uniqueNames =真。

但我仍然得到错误。任何建议

1 个答案:

答案 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