로딩
요청 처리 중입니다...

Spring Boot - Security 필터 체인 등록

 Spring Boot - Security 필터 체인 등록

해당 프로젝트는 로그인, 회원가입에 따라 회원별 권한을 부여합니다.. 비회원, 유저, 매니저, 어드민 총 4개의 계층으로 나누어져 있습니다..

현재까지의 구조는 다음과 같습니다.. dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' compileOnly 'org.projectlombok:lo...