标签:charset subject meta 标签 user.js apache not style org
shiro标签
示例:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="shiro" uri="http://shiro.apache.org/tags" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <h4>List Page</h4> Welcome: <shiro:principal></shiro:principal> <br><br> <shiro:hasRole name="admin"> <a href="admin.jsp">Admin Page</a> <br><br> </shiro:hasRole> <shiro:hasRole name="user"> <a href="user.jsp">User Page</a> <br><br> </shiro:hasRole> <a href="shiro/logout">Logout</a> </body> </html>
标签:charset subject meta 标签 user.js apache not style org
原文地址:http://www.cnblogs.com/wq3435/p/6271301.html