refactor : CorsConfiguration 패키지 변경 및 불필요한 파일 삭제
This commit is contained in:
@@ -1,21 +0,0 @@
|
|||||||
package com.banjjoknim.playground.config;
|
|
||||||
|
|
||||||
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
||||||
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
|
||||||
|
|
||||||
// @EnableWebSecurity
|
|
||||||
public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void configure(HttpSecurity http) throws Exception {
|
|
||||||
http.csrf().disable();
|
|
||||||
http.authorizeHttpRequests()
|
|
||||||
.antMatchers("/user/**").authenticated()
|
|
||||||
.antMatchers("/manager/**").hasAnyRole("MANAGER", "ADMIN")
|
|
||||||
.antMatchers("/admin/**").hasRole("ADMIN")
|
|
||||||
.anyRequest().permitAll()
|
|
||||||
.and()
|
|
||||||
.formLogin()
|
|
||||||
.loginPage("/login");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.banjjoknim.playground.config
|
package com.banjjoknim.playground.config.security
|
||||||
|
|
||||||
import org.springframework.context.annotation.Bean
|
import org.springframework.context.annotation.Bean
|
||||||
import org.springframework.context.annotation.Configuration
|
import org.springframework.context.annotation.Configuration
|
||||||
Reference in New Issue
Block a user