<bean id="userSession" class="com.test.service.beans.UserSession" scope="session">
<aop:scoped-proxy/>
</bean>
public class UserSession {
private User currentUser;
/**
* @return the currentUser
*/
public User getCurrentUser() {
return currentUser;
}
/**
* @param currentUser the currentUser to set
*/
public void setCurrentUser(User currentUser) {
this.currentUser = currentUser;
}
在代碼來獲取當前用戶的會話 - 我用春季會議被覆蓋
userFacade.getCurrentUser().getUserType()
訪問會話變量是沒有問題的。但是,當我嘗試打開另一個瀏覽器並使用其他用戶標識(用戶B)登錄時,用戶A的會話變量會被用戶B信息覆蓋
用戶對象沒有在會話範圍中聲明 - 是否應該是? – 2011-03-21 02:09:58