WebBack/Spring 연습(3)
-
[TodoList] 와이어 프레임
기능동작 방식컨트롤러컨트롤러 URLJSP목록GETTodoListController/todo/listWEB-INF/todo/list.jsp등록(입력)GETTodoRegisterController/todo/registerWEB-INF/todo/register.jsp등록(처리)POSTTodoRegisterController/todo/registerRedirect조회GETTodoReadController/todo/readWEB-INF/todo/read.jsp수정(입력)GETTodoModifyController/todo/modifyWEB-INF/todo/modify.jsp수정(처리)POSTTodoModifyController/todo/modifyRedirect삭제(처리)POSTTodoRemoveController..
2024.07.22 -
[Spring] 회원가입 폼 작성
주제URLHTML 양식https://ycraah.tistory.com/62로그인 HTML, CSS 양식https://ycraah.tistory.com/72 1. HTML 파일 수정 및 JSP로 변환 registerForm.html -> registerForm.jsp요구: 전송 URL 전송 방식 입력(registerInfo.jsp) / 유효성 검사 자바스크립트 작성 / El과 ` ` 타입 혼동 문제 해결 / 오토포커싱입력값: localhost/app/registerForm.jsphttps://github.com/ycraah/Spring/blob/main/regisiter.jsp Spring/regisiter.jsp at main · ycraah/SpringContribute to ycraah/Spring..
2024.07.21 -
[Spring 연습] 요일 출력기 및 기타 작업
1. 클래스 YoilTeller요구: @Controller @RequestMapping 사용 입력 예시: localhost/app/yoil?year=2024&month=7&day=16출력 예시: 2024년 7월 16일은 화요일입니다.https://github.com/ycraah/Spring/blob/main/YoilTeller.java Spring/YoilTeller.java at main · ycraah/SpringContribute to ycraah/Spring development by creating an account on GitHub.github.com 2. 클래스 YoilTeller요구: MVC에 따라 입력/작업(클래스 분리)/출력 분리(모델) / 유효성 검사입력 예시: localhost/a..
2024.07.20