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 | 31 |
Tags
- 원형그래프
- cisco packet
- 데이터베이스
- Cisco
- ospf
- 네트워크관리사
- 참조타입
- 네트워크
- javaee
- sql
- Oracle
- 정처기필기
- 오라클
- NCS
- w3school
- 정보처리기사
- 리눅스
- html
- VLAN
- 자바
- rinux
- ciscopacket
- 라우터
- Java
- php
- 이것이 자바다
- 버추얼머신
- autoset
- jsp
- jsp연결
Archives
- Today
- Total
기록해! 정리해!
thymeleaf - getBoardList 본문
1. getBoardList
<html xmlns:th="http://www.thymeleaaf.org">
<head>
</head>
<body>
<div align="center">
<h2>목록보기 ( <a href=index.html>처음으로</a> )</h2>
<table border=1 >
<tr align="center">
<th > 번호 </th> <th> 이름 </th> <th> 국어 </th>
<th> 영어 </th> <th> 수학 </th> <th> 역사 </th>
</tr>
<tr align="center" th:each="m : ${li}">
<td th:text="${m.sno}" />
<td th:text="${m.sname}" />
<td th:text="${m.kor}" />
<td th:text="${m.eng}" />
<td th:text="${m.math}" />
<td th:text="${m.hist}" />
</tr>
</table>
</div>
</body>
</html>
2.
- BoardController
package com.rubypaper.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import com.rubypaper.exam.ExamServiceImpl;
import com.rubypaper.exam.ExamVO;
@Controller
public class BoardController {
@Autowired
private ExamServiceImpl service;
@RequestMapping("/hello.do")
public void hello(Model model) {
model.addAttribute("greeting", "Hello 타임리프");
}
@RequestMapping("/getBoardList.do")
public void getBoardList(ExamVO vo, Model model){
System.out.println("===> getBoardList 확인");
model.addAttribute("li", service.getExamList(vo)) ;
}
}
- mapper와 Exam~은 MyBatisWar2를 복사해옴,
3. index.html
다 do로 맞춰줌
결과
'SpringBoot' 카테고리의 다른 글
thymeleaf - getBoard 상세보기+delete (0) | 2022.10.14 |
---|---|
thymeleaf - getBoardList 링크 (0) | 2022.10.14 |
thymeleaf - hello (0) | 2022.10.14 |
myBatis2 (7)- 자료실(사진삭제, space.jpg) (0) | 2022.10.13 |
myBatis2 (6)- 자료실(사진) (0) | 2022.10.13 |
Comments