项目

一般

简介

内嵌AAMS后 启动提示Caused by: java.lang.ClassNotFoundException: org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties

陈 泽豪将近 2 年 之前添加

版本:AAMS内嵌版

异常日志:

Caused by: java.lang.ClassNotFoundException: org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties

分析原因:

缺少actuate依赖,需要在应用的pom.xml引入相关依赖:
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>