Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经用 ui 设置了 spring boot 管理服务器。日志和 json 端点中没有错误显示我的示例客户端应用程序指向此服务器的信息。但是,html ui 不可见,返回 404。版本是 1.5.6。任何帮助将不胜感激!
您是否将其添加@EnableAdminServer到您的 Spring Boot 应用程序中?
@EnableAdminServer
@EnableAdminServer @SpringBootApplication public class YourApplication { public static void main(String[] args) { SpringApplication.run(YourApplication.class, args); } }
`