全局日期处理、文件上传下载、参数绑定、restful请求

This commit is contained in:
罗祥
2018-12-19 17:47:06 +08:00
parent c3428d4056
commit e038b16ddd
33 changed files with 21601 additions and 4 deletions

View 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>