- pom.xml org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-security - config.SecurityConfig 아래 코드에선 모든 요청에 대해 접근을 우선 허용 (Swagger에 접근이 안되기에) 그리고 비밀번호 암호화 코드는 passwordEncoder() 메서드를 참고 package com.server.login.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframewo..