spring 흐름대로 복습하기
about. What I learned/about.Gudi

spring 흐름대로 복습하기

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>

</head>
<body>
<table>
	<thead>
	<tr>
		<th><input type="checkbox" class="check"></th>
		<th>회원번호</th>
		<th>아이디</th>
		<th>이름</th>
		<th>생년월일</th>
	</tr>
	</thead>
	<tbody>
		<c:forEach var="data" items="${MList}">
		<tr>
			<td><input type="checkbox" class="check"></td>
			<td>${data.M_NO}</td>
			<td>${data.M_ID}</td>
			<td>${data.M_NM}</td>
			<td>${data.M_BIRTH}</td>
		</tr>
		</c:forEach>
	</tbody>
</table>
</body>
</html>

 

위의 번호대로 찍을 꺼야. 일단 그렇다면 순서대로 controller - service - dao - sql session 순으로 정리를 하겠다. 모두 주석 처리한 후 다시 진행해보기 06/02 까지 하기

'about. What I learned > about.Gudi' 카테고리의 다른 글

SPRING  (0) 2021.06.07
SPRING - 글쓰기, 수정 흐름도  (0) 2021.06.06
Spring(5/28)  (0) 2021.05.28
Spring - Ajax  (0) 2021.05.27
spring  (0) 2021.05.25