spring mvc : servlet - post html form

This commit is contained in:
haerong22
2021-03-29 21:28:26 +09:00
parent cba360a523
commit 3e2bab875c

View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="/request-param" method="post">
username: <input type="text" name="username" />
age: <input type="text" name="age" />
<button type="submit">전송</button>
</form>
</body>
</html>