무회blog

spring MVC(모델2)방식,JAVA, MySQL , RESFUL, 게시판 만들기 , 006.03 , jsp 파일 설정, (게시글상세) 본문

IT/Spring

spring MVC(모델2)방식,JAVA, MySQL , RESFUL, 게시판 만들기 , 006.03 , jsp 파일 설정, (게시글상세)

최무회 2020. 8. 24. 09:13

src/main/webapp (폴더 없으면 프로젝트에 우클릭하여 폴더 생성) 

WEB-INF/views/

boardView.jsp

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta http-equiv="Content-Type" content= "text/html; charset=UTF-8">
<!-- BootStrap CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<title>게시글 상세</title>
</head>
<body>
    <h3>게시글 상세</h3>
    <div style="padding : 30px;">
      <div class="form-group">
        <label>제목</label>
        <span>${board.subject}</span>
      </div>
      <div class="form-group">
        <label>작성자</label>
        <span>${board.writer}</span>
      </div>
      <div class="form-group">
        <label>작성날짜</label>
        <span><fmt:formatDate value="${board.reg_date}" pattern="yyyy/ MM/ dd HH:mm" /></span>
      </div>
      <div class="form-group">
        <label>조회수</label>
        <span>${board.hit}</span>
      </div>
      <div class="form-group">
        <label>내용</label>
        <p>${board.content}</p>
      </div>
      <div class="form-group">
          <input type="button" value="수정" onclick='location.href="/board/post/${board.bno}"'>
          <form:form action="/board/post/${board.bno}" method="DELETE">
              <input type="submit" value="삭제">
          </form:form>
      </div>
    </div>
</body>
</html>

 

https://private.tistory.com/38?category=655784

 

스프링 부트 게시판 만들기4 - Rest방식의 게시글 목록/작성/수정/삭제

관련글 : 스프링 부트로 게시판 만들기1 - 프로젝트 생성 스프링 부트로 게시판 만들기2 - MyBatis, MySQL 연동 스프링 부트로 게시판 만들기3 - JSP 사용하기 사실 포스팅은 매일하는데 어제는 작성 완

private.tistory.com

 

 

Comments