- <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
- <html>
- <head>
- <title>首页</title>
- </head>
- <body>
- <form action="/stu/add" method="post">
- 学号:<input type="text" name="stuid"><br>
- 姓名 :<input type="text" name="stuname"><br>
- 班级:<input type="text" name="stuclass"><br>
- 宿舍:<input type="text" name="studormitory"><br>
- <input type="submit" value="新增"><br>
- <a href="${pageContext.request.contextPath}/stu/findAll">查询所有学生</a>
- </form>
- </body>
- </html>
|