全局日期处理、文件上传下载、参数绑定、restful请求
This commit is contained in:
15
spring/springmvc-base/src/main/webapp/WEB-INF/jsp/param.jsp
Normal file
15
spring/springmvc-base/src/main/webapp/WEB-INF/jsp/param.jsp
Normal file
@@ -0,0 +1,15 @@
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
<html>
|
||||
<head>
|
||||
<title>Restful</title>
|
||||
<script src="${pageContext.request.contextPath}/js/jquery3.3.1.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
<li>姓名:${empty name ? p.name : name}</li>
|
||||
<li>年龄:${empty age ? p.age : age}</li>
|
||||
<li>薪酬:${empty salary ? p.salary : salary}</li>
|
||||
<li>生日:${empty birthday ? p.birthday : birthday}</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user