与端点春季启动创建两个Tomcat的容器(Spring boot with endpoints cr

2019-10-28 08:26发布

我与下面的conf弹簧启动的jar:

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

      <dependency>
    <groupId>org.jolokia</groupId>
    <artifactId>jolokia-core</artifactId>
    <version>1.2.2</version>
  </dependency>
  <dependency>
    <groupId>org.jolokia</groupId>
    <artifactId>jolokia-client-javascript</artifactId>
    <version>1.2.2</version>
    <type>javascript</type>
  </dependency>

管理属性

info.app.name=MyApp
info.app.description="blah blah"
info.app.version=1.0.0
peg.sendInterval.millis=3600000
instance.name=Appster
jolokia.config.debug=true
endpoints.jolokia.enabled=true
endpoints.jolokia.path=jolokia
spring.jmx.enabled=true
endpoints.jmx.enabled=true
management.port=9001
management.address=<super-secret-ip>
security.user.name=admin
security.user.password=cracked

当我指定的管理端口(9001),我看到的是一个单独的Tomcat实例。 目前,除了在8080 /本地主机上运行的默认Tomcat实例:9001。 如果我指定的管理端口为8080,没有什么工作。 如何禁用8080上运行的默认吗?

Answer 1:

设置server.port=-1将关闭主要应用网络端点(每个文档在这里 )。



文章来源: Spring boot with endpoints creates two Tomcat containers