250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 토픽추출
- 과학백과사전
- java
- Topics
- test
- pytorch
- db
- 幼稚园杀手(유치원킬러)
- 네이버뉴스
- lda
- oracle
- mysql
- 방식으로 텍스트
- word2vec
- 크롤링
- 파이썬
- r
- 코사인 유사도
- jsp 파일 설정
- RESFUL
- Websocket
- spring MVC(모델2)방식
- 이력서
- Gmarket
- tomoto
- (깃)git bash
- Python
- 게시판 만들기
- 지마켓
- 자바
Archives
- Today
- Total
무회blog
spring MVC(모델2)방식,JAVA, MySQL , RESFUL, 게시판 만들기 , 006.04 , jsp 파일 설정 , (insert 입력 ) 본문
IT/Spring
spring MVC(모델2)방식,JAVA, MySQL , RESFUL, 게시판 만들기 , 006.04 , jsp 파일 설정 , (insert 입력 )
최무회 2020. 8. 24. 09:16src/main/webapp (폴더 없으면 프로젝트에 우클릭하여 폴더 생성)
WEB-INF/views/
boardWrite.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"%>
<!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;">
<form method="POST" action="/board/post">
<div class="form-group">
<label>제목</label>
<input type="text" name="subject" class="form-control">
</div>
<div class="form-group">
<label>작성자</label>
<input type="text" name="writer" class="form-control">
</div>
<div class="form-group">
<label>내용</label>
<textarea name="content" class="form-control" rows="5"></textarea>
</div>
<button type="submit" class="btn btn-default">작성</button>
</form>
</div>
</body>
</html>
https://private.tistory.com/38?category=655784
'IT > Spring' 카테고리의 다른 글
Comments