1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <%@ page contentType="text/html;charset=UTF-8" %>
| <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
| <%@ taglib prefix="shiro" uri="http://shiro.apache.org/tags" %>
| <c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
| <html>
| <head>
| <title>欢迎使用系统!</title>
| </head>
| <body>
| <h1>欢迎使用系统!</h1>
| </body>
| </html>
|
|
|