티스토리 뷰
Spring Security Dependency
- build.gradle
dependencies { implementation 'org.springframework.boot:spring-boot-starter-security' }
- 인증 가능
- 사용자 정보 알 수 있다.
Security Setting
- SecurityConfig.java
@Configuration
@EnableWebSecurity
@RequiredArgsConstructor
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests() // 인가
.mvcMatchers("/", "/info").permitAll() // 1
.mvcMatchers("/admin").hasRole("ADMIN") // 2
.anyRequest().authenticated(); //3
http.formLogin() // 4
.and()
.httpBasic(); // 5
}
}
- /, /info 접근은 권한이 없어도 접근 가능
- ADMIN ROLE 을 가진 사용자만 접근 가능
- 그 외의 모든 접근은 인증 필요
- formLogin, httpBasic 인증을 사용
Sample Controller
- SampleController.java
@Controller
public class SampleController {
@GetMapping("/")
public String index(Model model, Principal principal) {
if (principal == null) {
model.addAttribute("message", "Hello Spring Security");
} else {
model.addAttribute("message", "Hello " + principal.getName());
}
return "index";
}
@GetMapping("/info")
public String info(Model model) {
model.addAttribute("message", "Hello Spring Security");
return "info";
}
@GetMapping("/dashboard")
public String dashboard(Model model, Principal principal) {
model.addAttribute("message", "Hello from Dashboard, " + principal.getName());
return "dashboard";
}
@GetMapping("/admin")
public String admin(Model model, Principal principal) {
model.addAttribute("message", "Hello Admin, " + principal.getName());
return "admin";
}
}
서버 구동 후 /dashboard로 접근하려 하면 Spring Security의 기본 Login화면이 나오게 됩니다.
- 기본 계정
- ID: user
- PW: 로그에 나오는 Using generated security password : ~~~~
위의 정보로 로그인하면 접근 할 수 있습니다.
'Dev > Spring' 카테고리의 다른 글
[security] 3. JPA와 Security 연동 (0) | 2021.05.11 |
---|---|
[security] 2. Inmemory User (0) | 2021.05.11 |
Spring @EventListner 사용해보기 - 2 (0) | 2020.11.22 |
Spring @EventListner 사용해보기 (0) | 2020.11.18 |
Spring boot 에러처리하기! (feat. @ExceptionHandler & @ControllerAdvice) (0) | 2020.11.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Python
- booleanExpression
- ControllerAdvice
- 개발
- QueryDSL
- springboot
- 웹서비스
- 자바
- mapstruct
- Security
- API
- spring web
- java11
- FastAPI
- howtoinstallnginx
- Java
- 스프링부트 시작하기
- springsecurity
- 유사결과
- @formula
- JPA
- 스프링시큐리티
- 스프링
- boot
- Spring
- ubuntu
- ResourceHttpReqeustHandler
- 스프링부트
- like절
- paawordencoder
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함