最新的springboot 2.2.1版本,启动之后访问http://localhost:8080 会直接跳转到默认登录页,是由于springboot默认配置了安全策略,在启动类中忽略该配置即可
在启动类添加以下配置:
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
最新的springboot 2.2.1版本,启动之后访问http://localhost:8080 会直接跳转到默认登录页,是由于springboot默认配置了安全策略,在启动类中忽略该配置即可
在启动类添加以下配置:
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})