package com.hongjl.demo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
/**
* @Author hongjinlin
* @create 2019-09-26 20:56
*/
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
private ReaderRepository readerRepository;
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth
.userDetailsService(new UserDetailsService() {
@Override
public UserDetails loadUserByUsername(String username)
throws UsernameNotFoundException {
return readerRepository.findById(username).orElse(null);
}
});
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/").access("hasRole('READER')")
.antMatchers("/**").permitAll()
.and()
.formLogin()
.loginPage("/login")
.failureUrl("/login?error=true");
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
读书笔记:spring boot 实战 源码.zip (28个子文件)
读书笔记:spring boot 实战 源码
SpringBootInAction
mvnw.cmd 6KB
pom.xml 2KB
src
test
java
com
hongjl
demo
DemoApplicationTests.java 340B
main
resources
application.properties 16B
templates
readingList.html 1KB
static
style.css 225B
java
com
hongjl
demo
DemoApplication.java 317B
Reader.java 1KB
Book.java 1KB
ReadingListController.java 1KB
SecurityConfig.java 2KB
ReadingListRepository.java 293B
ReaderRepository.java 223B
.mvn
wrapper
maven-wrapper.properties 116B
maven-wrapper.jar 47KB
.git
index 2KB
HEAD 23B
refs
heads
master 41B
tags
remotes
origin
master 41B
objects
pack
pack-734c26258a99153f82359a8b88a319b20784e7a5.pack 53KB
pack-734c26258a99153f82359a8b88a319b20784e7a5.idx 2KB
info
FETCH_HEAD 127B
logs
HEAD 130B
refs
heads
master 130B
remotes
origin
master 144B
hooks
config 264B
branches
mvnw 9KB
.gitignore 268B
共 28 条
- 1
资源评论
九转成圣
- 粉丝: 5561
- 资源: 2962
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功