1) ์ ์ ๋ฑ๋ก ํ์ด์ง์์ ์ ์๋ฅผ ๋ฑ๋กํ๋ฉด 2) ๋ฑ๋ก์ด ๋์๋ค๋ ๊ฒฐ๊ณผ ํ๋ฉด์ด ๋ฌ๋ค. 3) ์ดํ ๋ฆฌ์คํธ ํ๋ฉด์ผ๋ก ์ด๋ํ๋ฉด ๋ฑ๋กํ ์ ์๋ฅผ ๋ฆฌ์คํธ๋ฅผ ๋ณผ ์ ์๋ค. |
1) UI ์ ์ ( jsp ํ๋ฉด ๊ตฌ์ฑํ๊ธฐ )
scoreRegist.jsp |
scoreResult.jsp |
scoreList.jsp |
[code] scoreRegist.jsp
๋๋ณด๊ธฐ
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
* {
list-style-type: none; margin: 0; padding: 0;
}
</style>
</head>
<body>
<form action="scoreForm" method="post">
<ul>
<li> ์ด๋ฆ:<input type="text" name="name"></li>
<li> ๊ตญ์ด:<input type="number" name="kor"></li>
<li> ์ํ:<input type="number" name="math"></li>
<li> ์์ด:<input type="number" name="eng"></li>
</ul>
<input type="submit" value="์ ์๋ฑ๋ก">
</form>
</body>
</html>
[code] scoreResult.jsp
๋๋ณด๊ธฐ
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>์ ์ ๋ฑ๋ก์ด ์ ์์ฒ๋ฆฌ๋์์ต๋๋ค!</h3>
<a href="scoreList">๋ชฉ๋กํ์ด์ง</a>
<a href="scoreRegist">์ ์๋ฑ๋ก</a>
</body>
</html>
[code] scoreList.jsp
๋๋ณด๊ธฐ
<%@ 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>
<style>
table, tr, td {
border: 1px solid #ddd;
}
</style>
</head>
<body>
<table>
<c:forEach var="vo" items="${list }" varStatus="a" >
<tr>
<td> ${a.index } </td>
<td> ${vo.name }</td>
<td> ${vo.kor }</td>
<td> ${vo.eng }</td>
<td> ${vo.math }</td>
<td> <button type="button" onclick="location.href='deleteScore?sno=${vo.sno}';">์ญ์ </button> </td>
</tr>
</c:forEach>
</table>
<a href="scoreRegist">์ถ๊ฐ๋ฑ๋กํ๊ธฐ</a>
</body>
</html>