250x250
Notice
Recent Posts
Recent Comments
«   2025/02   »
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
Tags more
Archives
Today
Total
관리 메뉴

개린이 개발노트

[Spring] Spring스프링 현업에서 많이쓰는 form/ 본문

스프링Spring

[Spring] Spring스프링 현업에서 많이쓰는 form/

개린이9999 2022. 11. 28. 19:37
728x90
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>테스트 목록</title>
</head>
<body>

<form action="/test/list">
	<input type="submit" value="list(GET)">
</form>

<form action="/test/detail">
	<input type="submit" value="list(GET)">
</form>

<form action="/test/insert">
	<input type="submit" value="list(POST)">
</form>

<form action="/test/update">
	<input type="submit" value="list(POST)">
</form>

<form action="/test/delete">
	<input type="submit" value="list(POST)">
</form>

</body>
</html>

</form> <form action="/test/detail"> <input type="submit" value="list(GET)"> </form>

</form> 

</form>  

형태가 많이쓰임

728x90