表单未正确重定向 Wicket
private void setDefaultResponsePageIfNecessary() {
if(!continueToOriginalDestination()) {
if(session.getRoles().equals("ROLE_ADMIN")){
setResponsePage(SearchForCapacity.class);
System.out.println("Role for Admin:" + session.getRoles());
} else if (session.getRoles().equals("ROLE_USER"));
setResponsePage(HomePage.class);
System.out.println("Role for User: " + session.getRoles());
}
}
大家好,这段摘录来自我的登录类,它工作正常,只是它不会重定向到正确的页面。我可以将角色打印到控制台,这样对于管理员来说,它将打印 ROLE_ADMIM 等。问题是无论角色是什么,它总是导航到同一页面(主页),有人知道这是为什么吗?谢谢。
private void setDefaultResponsePageIfNecessary() {
if(!continueToOriginalDestination()) {
if(session.getRoles().equals("ROLE_ADMIN")){
setResponsePage(SearchForCapacity.class);
System.out.println("Role for Admin:" + session.getRoles());
} else if (session.getRoles().equals("ROLE_USER"));
setResponsePage(HomePage.class);
System.out.println("Role for User: " + session.getRoles());
}
}
Hi all, this extract is from my login class which works fine except it wont redirect to the correct page. I can print the roles to the console so for admin it will print ROLE_ADMIM etc. The problem is no matter what the role it always navigates to the same page (HomePage), does anyone know why this is? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
else if
语句由;
终止,而不是使用{
打开块。The
else if
statement is terminated by a;
instead of opening a block with{
.您还应该使用
getRoles().contains()
而不是getRoles().equals()
。You should also use
getRoles().contains()
instead ofgetRoles().equals()
.