我有不同类型的用户,当用户登录时,我需要显示与该用户类型相关联的特定页面。
问题是,由于应用程序直接从 Tile 检索页面,它不会检索它们的信息,因此我需要刷新页面以让它检索其信息并填充。
我应该如何让它自动完成?
爪哇
public static String getRole() {
String user = SecurityContextHolder.getContext().getAuthentication().getAuthorities().toString();
if user is standard{
return "stand";
}
if user is vip{
return "vip";
}
}
Struts.xml
<action name="myProject" class="com.myProject.controller.authentication">
<result name="stand" type="tiles">standard</result>
<result name="vip" type="tiles">vip</result>
<result name="">index.jsp</result>
</action>