привод / обновление не предоставляется в SpringBoot 2.0.1 - PullRequest
0 голосов
/ 01 мая 2018

Я создаю демонстрационный проект для Spring-Config-Server и Spring-Config-Client.

В SpringBoot 1.5.6.RELEASE все работает нормально.

Однако, когда я обновляю проект до 2.0.1.RELEASE, он не предоставляет конечные точки привода.


Конечная точка привода указана в 1.5.6. RELEASE

Mapped "{[/refresh || /refresh.json],methods=[POST]}"
Mapped "{[/dump || /dump.json],methods=[GET]
Mapped "{[/heapdump || /heapdump.json],methods=[GET]
Mapped "{[/autoconfig || /autoconfig.json],methods=[GET]
Mapped "{[/resume || /resume.json],methods=[POST]}"
Mapped "{[/configprops || /configprops.json],methods=[GET]
Mapped "{[/features || /features.json],methods=[GET]
Mapped "{[/loggers/{name:.*}],methods=[GET]
Mapped "{[/restart || /restart.json],methods=[POST]}"
...and many more

Конечная точка привода указана в 2.0.1.RELEASE

Mapped "{[/actuator/health],methods=[GET]
Mapped "{[/actuator/info],methods=[GET]
Mapped "{[/actuator],methods=[GET]

pom.xml : 2.0.1.RELEASE

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <spring-cloud.version>Finchley.RC1</spring-cloud.version>
    </properties>

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-config</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    <repositories>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

Единственное отличие bw 1.5.6 pom - это версия и spring-cloud.version = Dalston.SR2

Может кто-нибудь помочь, пожалуйста?

Ответы [ 3 ]

0 голосов
/ 03 мая 2018

Экспозиция конечных точек по HTTP теперь настраивается с помощью свойств

management.endpoints.web.exposure.include
management.endpoints.web.exposure.exclude

Вы можете выставить конечные точки по идентификатору, указанному в Actuator.

# Include all endpoints 
management.endpoints.web.exposure.include=*
# Exclude specifics 
management.endpoints.web.exposure.exclude=env
0 голосов
/ 01 апреля 2019

Даже после добавления строки ниже, иногда не помогает management.endpoints.web.exposure.include = *

Попробуйте это: - Обновление работает по методу OPTIONS, а не по методу POST в некоторых случаях.

enter image description here

0 голосов
/ 01 мая 2018

После небольшого исследования я нашел причину, по которой конечные точки не отображаются в Spring Boot 2.0, это согласно документации

По умолчанию включены все конечные точки, кроме выключения

Итак, нам нужно включить их вручную.

Я добавил management.endpoints.web.exposure.include=* в application.properties файл, и теперь все конечные точки вернулись.

Примечание : Если вы используете .yml, обязательно используйте "*", а не *

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...