Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바
- php
- 정보처리기사
- 네트워크
- 이것이 자바다
- ospf
- NCS
- jsp연결
- 정처기필기
- 리눅스
- Oracle
- w3school
- sql
- 라우터
- 네트워크관리사
- jsp
- cisco packet
- ciscopacket
- autoset
- 버추얼머신
- rinux
- javaee
- 원형그래프
- 오라클
- VLAN
- 참조타입
- Java
- html
- 데이터베이스
- Cisco
Archives
- Today
- Total
기록해! 정리해!
thymeleaf - getBoard 상세보기+delete 본문
1. getBoard.html 생성
<html xmlns:th="http://www.thymeleaaf.org">
<head>
<script>
function listOk(){
alert("목록보기");
location.href="getBoardList.do"
}
function delOk(sno){
alert("삭제하기" + sno);
location.href="delete.do?sno="+sno;
}
</script>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<div align="center">
<h2> 성적 상세보기 </h2>
<form action="updateOk.do">
<table border=1 >
<tr> <td > 번호 </td><td > <input type=text name="sno" id="sno" th:value="${m.sno}" > </td> </tr>
<tr> <td> 이름 </td> <td > <input type=text name=sname id="sname" th:value="${m.sname}" ></td> </tr>
<tr> <td> 국어 </td><td > <input type=text name=kor id="kor" th:value="${m.kor}" > </td> </tr>
<tr> <td> 영어 </td> <td > <input type=text name=eng id="eng" th:value="${m.eng}" > </td> </tr>
<tr> <td> 수학 </td><td > <input type=text name=math id="math" th:value="${m.math}" > </td> </tr>
<tr> <td> 역사 </td><td > <input type=text name=hist id="hist" th:value="${m.hist}" > </td> </tr>
<tr> <td colspan=2 align="center">
<input type=button value="목록보기" onClick="listOk()" >
<input type=submit value="수정하기" >
<input type=button value="삭제하기" th:onClick="delOk([[${m.sno}]])" >
</td>
</tr>
</table>
</form>
</div>
</body>
</html>
2. BoardController
@RequestMapping("/getBoard.do")
public void getBoard(ExamVO vo, Model model){
System.out.println("===> getBoard 확인");
model.addAttribute("m", service.getExam(vo)) ;
}
결과)
delete.do 만들기
3. BoardController
@RequestMapping("/delete.do")
public String delete(ExamVO vo, Model model){
System.out.println("===> delete.do 확인");
service.delete(vo);
return "redirect:getBoardList.do";
}
결과)
'SpringBoot' 카테고리의 다른 글
thymeleaf - getBoardList (날짜+합계) (0) | 2022.10.14 |
---|---|
thymeleaf - getBoard 수정하기 + 순번 (0) | 2022.10.14 |
thymeleaf - getBoardList 링크 (0) | 2022.10.14 |
thymeleaf - getBoardList (0) | 2022.10.14 |
thymeleaf - hello (0) | 2022.10.14 |
Comments