提问者:小点点

Spring启动/石英webapp不发布“执行器/石英”endpoint


我有一个带有石英依赖项的Spring引导Web应用程序,并且Spring执行器正在运行。但是执行器只发布14个endpoint。是否需要启用某些功能才能让执行器发布石英endpoint?

父项目是

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.4.0</version>
</parent>

以及接下来的Spring依赖项

<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.boot</groupId>
    <artifactId>spring-boot-starter-quartz</artifactId>
</dependency>

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

以及以下执行器属性:

management.endpoint.shutdown.enabled=true
management.endpoint.quartz.enabled=true
management.endpoints.web.exposure.include=*

尽管依赖于石英,但没有针对石英发布Spring执行器endpoint。 /actuatorendpoint报告以下内容:

{
    "_links": {
        "self": {
            "href": "https://localhost:8080/actuator",
            "templated": false
        },
        "beans": {
            "href": "https://localhost:8080/actuator/beans",
            "templated": false
        },
        "caches-cache": {
            "href": "https://localhost:8080/actuator/caches/{cache}",
            "templated": true
        },
        "caches": {
            "href": "https://localhost:8080/actuator/caches",
            "templated": false
        },
        "health": {
            "href": "https://localhost:8080/actuator/health",
            "templated": false
        },
        "health-path": {
            "href": "https://localhost:8080/actuator/health/{*path}",
            "templated": true
        },
        "info": {
            "href": "https://localhost:8080/actuator/info",
            "templated": false
        },
        "conditions": {
            "href": "https://localhost:8080/actuator/conditions",
            "templated": false
        },
        "shutdown": {
            "href": "https://localhost:8080/actuator/shutdown",
            "templated": false
        },
        "configprops": {
            "href": "https://localhost:8080/actuator/configprops",
            "templated": false
        },
        "env": {
            "href": "https://localhost:8080/actuator/env",
            "templated": false
        },
        "env-toMatch": {
            "href": "https://localhost:8080/actuator/env/{toMatch}",
            "templated": true
        },
        "loggers": {
            "href": "https://localhost:8080/actuator/loggers",
            "templated": false
        },
        "loggers-name": {
            "href": "https://localhost:8080/actuator/loggers/{name}",
            "templated": true
        },
        "heapdump": {
            "href": "https://localhost:8080/actuator/heapdump",
            "templated": false
        },
        "threaddump": {
            "href": "https://localhost:8080/actuator/threaddump",
            "templated": false
        },
        "metrics-requiredMetricName": {
            "href": "https://localhost:8080/actuator/metrics/{requiredMetricName}",
            "templated": true
        },
        "metrics": {
            "href": "https://localhost:8080/actuator/metrics",
            "templated": false
        },
        "scheduledtasks": {
            "href": "https://localhost:8080/actuator/scheduledtasks",
            "templated": false
        },
        "mappings": {
            "href": "https://localhost:8080/actuator/mappings",
            "templated": false
        }
    }
}

共1个答案

匿名用户

您正在使用Spring Boot 2.4.0,而Quartzendpoint是Spring Boot 2.5.0中的新endpoint。您应该升级到2.5才能使用它。