我想在我的JPS Web应用程序中提供许多用户。我不希望为每个用户重定向许多页面。我只想为所有用户提供一个页面。例如,我有一个页面包含添加,编辑和删除按钮,这是管理员用户的主要或唯一角色。如果登录用户不是管理员,我不希望任何用户有权添加,编辑和删除。
答案 0 :(得分:2)
即使您对不同的角色使用相同的JSP页面也是可能的。 JSP在服务器中编译并转换为原始HTML& js在发送给客户之前。
因此在JSP页面中你可以放置用户角色的条件基础。喜欢 -
LoginServlet -
public class LonginServelt extends HttpServlet{
public void doPost(HttpServletRequest request, HttpServletResponse response){
User user = userService.checkUserCredential(username,password);
Session session = request.getSession();
session.setAttribute("user",user);
}
}
<c:choose>
<c:when test="${isAdmin}">
You got Gold
</c:when>
<c:when test="${isCustomer}">
You got Silver
</c:when>
<c:when test="${isProducer}">
You got Bronze
</c:when>
<c:otherwise>
Better luck next time
</c:otherwise>
</c:choose>
因此,当用户在服务器本身中使用不同角色访问此页面时,它将填充角色依赖的html。
注意:您甚至可以使用scriplet来处理被视为的条件 旧技术。
答案 1 :(得分:1)
你想要的是一个精确的过滤器sessionfilter,你可以试试这些:
我假设你有一个用户类,如果不是:
User.java
public class User implements Serializable {
private int accountId;
private String loginId;
private Role type;
public User(int accountId, String loginId, Role type) {
this.accountId = accountId;
this.loginId = loginId;
this.type = type;
}
public User() {
this.accountId = -1;
this.loginId = null;
this.type = null;
}
public void setRole(Role type) {
this.type = type;
}
public Role getRole() {
return this.type;
}
public void setAccountId(int accountId) {
this.accountId = accountId;
}
public int getAccountId() {
return this.accountId;
}
public void setLoginId(String loginId) {
this.loginId = loginId;
}
public String getLoginId() {
return this.loginId;
}
}
您还可以为角色类型创建枚举:
Role.java
public enum Role {
ADMINISTRATOR, STAFF;
}
在你的login.jsp中,这只是一个给你一个想法的例子:
<%
//put your login query stuff here
User user = new User();
user.setAccountId(1);
user.setLoginId("adminaccount01);
user.setRole(Role.ADMINISTRATOR);
session.setAttribute("LOGIN_USER", user);
%>
这里是过滤器: SessionCheckFilter.java
public class SessionCheckFilter implements Filter {
private String contextPath;
@Override
public void init(FilterConfig fc) throws ServletException {
contextPath = fc.getServletContext().getContextPath();
}
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain fc) throws IOException, ServletException {
HttpServletRequest req = (HttpServletRequest) request;
HttpServletResponse res = (HttpServletResponse) response;
User user = (User) req.getSession().getAttribute("LOGIN_USER");
if (user == null) {
//put your redirect stuff here
res.sendRedirect(contextPath + "/to_your_login.jsp");
} else {
switch (user.getRole()) {
case ADMINISTRATOR:
//put your redirect stuff here
res.sendRedirect(contextPath + "/redirect_to_your_admin_path/admin_page.jsp");
break;
case STAFF:
//put your redirect stuff here
res.sendRedirect(contextPath + "/redirect_to_staff_path/staff_page.jsp");
break;
default:
break;
}
fc.doFilter(request, response);
}
}
@Override
public void destroy() {
}
}
并添加不要忘记将这些添加到 web.xml
<filter>
<filter-name>SessionCheckFilter</filter-name>
<filter-class>package_name_if_there_is_any.SessionCheckFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>SessionCheckFilter</filter-name>
<url-pattern>/your_path/*</url-pattern>
</filter-mapping>