Project B (SPMS)/Project B 파트6(3)
-
[B -2-53] 스프링 웹 시큐리티를 이용한 로그인 처리 3
어노테이션을 이용한 스프링 시큐리티 설정 src/main/java com.spms.controller SampleController.java 더보기 package com.spms.controller; import org.springframework.security.access.annotation.Secured; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.Re..
2019.10.10 -
[B -2-52] 스프링 웹 시큐리티를 이용한 로그인 처리 2
인증 및 권한을 위한 테이블 설계 회원 테이블 생성 create table TBL_MEMBER( USERID varchar2(50) not null primary key, USERPW varchar2(100) not null, USERNAME varchar2(100) not null, REGDATE date default SYSDATE, UPDATEDATE date default SYSDATE, ENABLED char(1) default '1' ); 권한 테이블 생성 create table TBL_MEMBER_AUTH ( USERID varchar2(50) not null, AUTH varchar2(50) not null, constraint FK_MEMBER_AUTH foreign key(USERID)..
2019.10.10 -
[B -2-51] 스프링 웹 시큐리티를 이용한 로그인 처리 1
pom.xml 스프링 시큐리티 관련 라이브러리 추가 spring-security-web spring-security-config spring-security-core spring-security-taglibs 더보기 4.0.0 com.spms controller SPMS_B war 1.0.0-BUILD-SNAPSHOT 1.8 5.0.7.RELEASE 1.6.10 1.6.6 org.springframework spring-context ${org.springframework-version} commons-logging commons-logging org.springframework spring-webmvc ${org.springframework-version} org.springframework sprin..
2019.10.09