我在我的项目中使用 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而不是实际 session 。

我没有在网络模式下尝试过。

为什么我会得到一个空 session ?它与spring4gwt有关系吗?

最佳答案

是的,因为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();

10-04 20:20