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
- spring boot
- OAuth
- 스프링부트
- 스프링
- docker
- 스프링 클라우드
- 유레카
- JS
- 자바
- 도커
- JavaScript
- EUREKA
- jQuery
- Java
- 비동기
- leetcode
- map
- map()
- Spring Cloud
- GIT
- spring security
- 자바스크립트
- 프로그래머스
- gitlab
- IntelliJ
- 코딩테스트
- date
- SpringBoot
- Spring
- STS
Archives
- Today
- Total
목록허용 (1)
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("/").pe..
DEV/SPRING
2022. 5. 17. 08:58