今天学习搭建springboot项目,运行成功之后,当页面访问接口得时候,直接跳转到登录页面
当然不是我写得页面,然后各种百度,终于找到原因了
pom文件中添加了对web的安全应用
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
直接取消掉注释即可
今天学习搭建springboot项目,运行成功之后,当页面访问接口得时候,直接跳转到登录页面
当然不是我写得页面,然后各种百度,终于找到原因了
pom文件中添加了对web的安全应用
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
直接取消掉注释即可