我正在尝试集成Struts 2和Spring security 3。 我不明白如何处理会话,两者都有。有标准方法吗?
我知道在会话处理中构建的struts会话,ActionContext
例如
Map session = ActionContext.getContext().getSession();
session.put("userIdx","xxxxx");
但不是如何使用弹簧安全性。
有很多关于使用Spring Security 3的Spring MVC教程, 但Struts 2和Spring Security 3并不是很多。 你知道任何好的教程吗? 或者我会更好地使用Spring MVC?