目前想将spring boot 添加到自己的权限系统中
但是发现只要pom.xml引用
<!-- spring boot admin监控end-->
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui</artifactId>
<version>1.3.2</version>
</dependency>
<!-- spring boot admin监控end-->
就会出现访问不倒static下静态资源的情况
解决办法如下:
application.property添加
spring.boot.admin.context-path: /hi
即可