Spring boot Security에서 sencha 예외 처리
2024. 7. 20. 12:56ㆍJava/Spring Boot Security
로그인 전에 sencha 화면이 나오게 하려면 아래와 같이 url 예외처리 해줘야 함
String[] exceptUrl = {
"/*.js",
"/*.json",
"/build/**",
"/ext/build/**",
"/ext/classic/**",
"/app/**",
"/classic/**"
}
@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
http.authorizeHttpRequests((requests) -> requests
.requestMatchers(exceptUrl).permitAll()
.anyRequest().authenticated())
.formLogin((form) -> form
.loginPage("/login")
.permitAll())
.logout((logout) -> logout.permitAll());
return http.build();
}
'Java > Spring Boot Security' 카테고리의 다른 글
Spring boot Security redirect 정보 가져오기 (0) | 2024.07.29 |
---|---|
Spring boot Security redirect after logging (0) | 2024.07.29 |
Spring boot Security Custom 화면 설정 (0) | 2024.06.13 |
Spring boot Security DB 연동 (0) | 2024.06.09 |
Sprng boot Security 적용 (0) | 2024.05.26 |