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 | 31 |
Tags
- 스프링부트
- SpringBoot
- Java
- spring boot
- leetcode
- 비동기
- gitlab
- EUREKA
- OAuth
- JS
- 코딩테스트
- date
- jQuery
- STS
- 스프링
- 유레카
- 자바
- IntelliJ
- Spring
- GIT
- 스프링 클라우드
- docker
- 도커
- 자바스크립트
- map()
- JavaScript
- Spring Cloud
- 프로그래머스
- map
- spring security
Archives
- Today
- Total
목록resource (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