0
点赞
收藏
分享

微信扫一扫

SpringSecurity学习(一):SpringBoot整合SpringSecurity

蒸熟的土豆 2022-03-30 阅读 67

目录

一、创建一个springboot项目

二、引入依赖(注意springboot的版本问题) 

三、编写一个controller测试

四、启动程序,打开浏览器访问


 

一、创建一个springboot项目

 

二、引入依赖(注意springboot的版本问题) 

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>springsecurity</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springsecurity</name>
<description>springsecurity</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.4.1</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

 

三、编写一个controller测试

@RestController
@RequestMapping("/test")
public class TestController {

@GetMapping("/hello")
public String hello(){
return "hello security";
}
}

        同时,为了避免端口冲突,在application文件中更改一下端口号 

server.port=8111

 

 

四、启动程序,打开浏览器访问

        http://localhost:8111/login 

        并没有直接显示我们编写的字符串,而是要求输入用户名和密码,说明我们的security生效了。 

 

        默认的用户名是user,密码在每次启动程序的时候会生成一个随机的

 

        登录之后访问对应的路径,就可以看到我们写好的东西了 

 

 

 这就完成了对springsecurity的简单使用,是不是很简单呢!

举报

相关推荐

0 条评论