코드리뷰2023. 5. 13. 16:48MyBatis, Spring (com.multi.erp.member)

MemberController 코드 리뷰 package com.multi.erp.member; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.w..

코드리뷰2023. 5. 13. 01:35MyBatis,Spring(com.multi.erp.board)

BoardContoller 코드 리뷰 package com.multi.erp.board; import java.util.List; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.sprin..

카테고리 없음2023. 5. 12. 00:31[에러]Several ports (8005, 8080) required by Tomcat v9.0 Server at localhost are already in use.Several ports (8005, 8080) required by Tomcat v9.0 Server at localhost are already in use.

해결 방법 . 1.cmd 창을 연다 2. netstat -p tcp -ano 을 친다 3. 로컬주소에서 8088,8005,8080 등의 PID 숫자를 복사 해둔다 (사용하는 포트) 4. taskkill /f /pid PID번호를 치고 엔터 해결된다.

tiles (실습 예제)
카테고리 없음2023. 5. 11. 01:31tiles (실습 예제)

1. 새로운 Spring MVC Project를 생성하고 첨부된 파일을 추가하여 다음과 같이 프로젝트를 구성합니다. - 프로젝트명 : erp - 프로젝트 생성하면서 정의할 패키지명:com.multi.erp - 프로그램 버전 javax.servlet javax.servlet-api 3.0.1 provided 서블릿 버전 2. 1번과 같이 새로운 Spring MVC Project를 생성하고 첨부된 파일을 추가하여 다음과 같이 프로젝트를 구성합니다. [템플릿 작성] tiles 설정 파일에 템플릿 작성합니다. 1) 첫 화면 템플릿 - definition템플릿명 : indexTemplate - 레이아웃 : /WEB-INF/layout/index.jsp - put-attribute명 top : /WEB-INF/in..

image