Today I Learned
Spring
- Request : 요청의 모든 정보를 담고 있음
- Response : Client의 요청의 결과물을 Server가 Client로 보냄
Spring 과 DB 연동
- mvnrepository.com 에서 필요한 라이브러리 검색 후 복사
- pom.xml에서 dependency 추가
- DBConnector 생성
Servlet JSP Tomcat
< JSTL >
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- 사용
<c:forEach begin="시작번호" end="끝번호" step="증가값" var="숫자를 담을 변수명">
* Collection 반복
<c:forEach items="Collection의 속성명" var="DTO를 담을 변수명" varStatus="상태를 담을 변수명">
- Request : HttpServletRequest & Response : HttpServletResponse
- Parameter
- Attribute
728x90