我想在会话中保存登录用户并从会话中检索用户。我正在使用弹簧靴
在用户bean中
@Scope(value="session", proxyMode = ScopedProxyMode.TARGET_CLASS)
public class User{
在服务层中,完成登录身份验证后,我将其保存在会话中
session.setAttribute("User", user);
和 自动连线会话
@Autowire
HttpSession session;
然后我尝试将其检索到另一个bean
@Transient
@Autowired
private User user ;
@CreatedBy
protected User createdBy = user;
我越来越空了。会话中没有任何价值。
我要执行某些任务吗