| | |
| | | package kr.wisestone.owl.config; |
| | | |
| | | import kr.wisestone.owl.config.security.filter.AjaxSessionExpiredFilter; |
| | | import kr.wisestone.owl.config.security.filter.CustomAuthenticationFilter; |
| | | import kr.wisestone.owl.config.security.handler.AjaxAuthenticationEntryPoint; |
| | | import kr.wisestone.owl.config.security.handler.AjaxAuthenticationFailureHandler; |
| | | import kr.wisestone.owl.config.security.handler.AjaxAuthenticationSuccessHandler; |
| | |
| | | .antMatchers("/language/change").permitAll() |
| | | .antMatchers("/security/*").permitAll() |
| | | .antMatchers("/api/issue").permitAll() |
| | | .antMatchers("/api/issue/*").permitAll() |
| | | .antMatchers("/**/*").authenticated(); |
| | | |
| | | // http.addFilter(new CustomAuthenticationFilter()); |
| | | // http.addFilterBefore(new CustomAuthenticationFilter(), UsernamePasswordAuthenticationFilter.class); |
| | | |