Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바스크립트
- JS
- 스프링부트
- 유레카
- map
- 비동기
- Java
- EUREKA
- gitlab
- OAuth
- 자바
- GIT
- spring boot
- SpringBoot
- docker
- 스프링
- 코딩테스트
- map()
- Spring Cloud
- leetcode
- date
- JavaScript
- spring security
- STS
- IntelliJ
- jQuery
- Spring
- 프로그래머스
- 스프링 클라우드
- 도커
Archives
- Today
- Total
RATSENO
Spring Securtiy 정적 자원 접근 허용 본문
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true, securedEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()
.requestMatchers().hasAnyRole("ADMIN").antMatchers("/").permitAll()
.anyRequest().authenticated();
}
}
.requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()
'DEV > SPRING' 카테고리의 다른 글
Comments