我在我的项目中使用spring4gwt
。
我有以下登录服务实现:
@Service("loginService")
public class LoginServiceImpl extends RemoteServiceServlet implements LoginService {
@Override
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class)
public UserBean checkUser(String userName, String password) throws Exception {
HttpSession httpSession = getThreadLocalRequest().getSession();
}
}
当我调用loginService.checkUser("test","test")
时(在托管模式下),我得到一个NullPointerException,因为getThreadLocalRequest()
返回NULL而不是实际会话。
我还没有尝试过网络模式。
为什么我会得到一个空会话?它与spring4gwt有关吗?
答案 0 :(得分:6)
是的,因为spring4gwt
,我们需要采用不同的方法。
我在http://code.google.com/p/spring4gwt/issues/detail?id=2找到了解决方案:
web.xml中的:
<filter>
<filter-name>springRequestFilter</filter-name>
<filter-class>org.springframework.web.filter.RequestContextFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>springRequestFilter</filter-name>
<url-pattern>/your-url/*</url-pattern>
</filter-mapping>
而不是:
HttpSession httpSession = getThreadLocalRequest().getSession();
使用:
ServletRequestAttributes attr = (ServletRequestAttributes) RequestContextHolder.currentRequestAttributes();
HttpSession httpSession = attr.getRequest().getSession();