一、pom.xml配置
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
二、application.properties配置
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=123456
三、user.ddl配置:
user.ddl在org.springframework.security.core.userdetails.jdbc包
create table users(username varchar(50) not null primary key,password varchar(500) not null,enabled boolean not NULL);
create table authorities (username varchar(50) not null,authority varchar(50) not null,constraint fk_authorities_users foreign key(username) references users(username));
四、security代码
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/admin/api/**").hasRole("ADMIN")
.antMatchers("/user/api/**").hasRole("USER")
.antMatchers("/app/api/**").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.and()
.csrf().disable();
}
@Bean
public UserDetailsService userDetailsService(DataSource dataSource) {
JdbcUserDetailsManager manager = new JdbcUserDetailsManager(dataSource);
Function<String, String> function = s -> passwordEncoder().encode(s);
manager.createUser(User.withUsername("root").password("root").roles("ADMIN").passwordEncoder(function).build());
manager.createUser(User.withUsername("chopper").password("123456").roles("USER").passwordEncoder(function).build());
return manager;
}
@Bean
public PasswordEncoder passwordEncoder() {
return new MessageDigestPasswordEncoder("MD5");
}
}
五、测试接口
@RestController
public class AdminController {
@RequestMapping("/admin/api/hello")
public String hello() {
return "hello, admin!";
}
}
@RestController
public class AppController {
@RequestMapping("/app/api/hello")
public String hello() {
return "hello, app!";
}
}
@RestController
public class UserController {
@RequestMapping("/user/api/hello")
public String hello() {
return "hello, user!";
}
}
本文详细介绍了如何在Spring Boot项目中配置Spring Security进行安全与权限管理,包括pom.xml依赖配置、application.properties数据源配置、user.ddl用户表创建、WebSecurityConfigurerAdapter子类的实现以及RESTful API的权限分配。
1003

被折叠的 条评论
为什么被折叠?



