[4] Spring Security
1. Spring Security 인증, 인가를 위해 사용 인가는 인증 과정 이후, 관리자 페이지에 일반 유저 접근하지 못하는 것 등이 포함 2. Security 설정 https://hhseong.tistory.com/173 @Configuration @EnableWebSecurity public class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { } @Bean public PasswordEncoder passwordEncoder(){ return new BCryptPasswordEncoder(); } } WebSecur..