讨论区 » AAS-V10敏捷版 »
版本: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>