求助大神,更新数据库后shiro的subject怎么更新
写了个修改学生信息的controller,数据库里的东西可以更新,刷新之后shiro的subject的信息如何更新。。
回复 2楼 静水且流深
是的,这样写吗
public void updateSubject(Subject subject,String studentId) {
String realmName=subject.getPrincipals().getRealmNames().iterator().next();
//第一个参数为用户名,第二个参数为realmName,test想要操作权限的用户
SimplePrincipalCollection principals = new SimplePrincipalCollection(studentId,realmName);
subject.runAs(principals);
/*loginRealms.getAuthorizationCache().remove(subject.getPrincipals());
subject.releaseRunAs();*/
}
我这样写,shiro的jsp标签就识别不了了