[Spring][쇼핑몰 프로젝트][12]~[13]

[Spring][쇼핑몰 프로젝트][12] 인터셉터 적용
https://kimvampa.tistory.com/144?category=771727
[Spring][쇼핑몰 프로젝트][13] 작가 테이블 구성 & 기타 작업(로고,footer영역, 관리자 페이지) - 1
https://kimvampa.tistory.com/148
[Spring][쇼핑몰 프로젝트][13] 작가 테이블 구성 & 기타 작업(로고,footer영역, 관리자 페이지) - 2
https://kimvampa.tistory.com/149
This commit is contained in:
SeoJin Kim
2021-02-05 08:50:54 +09:00
parent fde6dab14b
commit 93d980be61
38 changed files with 2911 additions and 68 deletions

View File

@@ -19,5 +19,31 @@ public class AdminController {
logger.info("관리자 페이지 이동");
}
/* 상품 등록 페이지 접속 */
@RequestMapping(value = "goodsManage", method = RequestMethod.GET)
public void goodsManageGET() throws Exception{
logger.info("상품 등록 페이지 접속");
}
/* 상품 등록 페이지 접속 */
@RequestMapping(value = "goodsEnroll", method = RequestMethod.GET)
public void goodsEnrollGET() throws Exception{
logger.info("상품 등록 페이지 접속");
}
/* 작가 등록 페이지 접속 */
@RequestMapping(value = "authorEnroll", method = RequestMethod.GET)
public void authorEnrollGET() throws Exception{
logger.info("작가 등록 페이지 접속");
}
/* 작가 관리 페이지 접속 */
@RequestMapping(value = "authorManage", method = RequestMethod.GET)
public void authorManageGET() throws Exception{
logger.info("작가 관리 페이지 접속");
}
}