如何在Spring中使用请求范围?

How to use request scope in Spring?

我想将 UriInfo 包装到我的自定义查询对象中,并使其在其他 Spring 组件中可用。我可以像这样用 HK2 做到这一点

package test.service;

@Path("/test")
public class TestResource {

    @Inject
    private Query query;

    @GET
    public String test() {
        return "found: " + query.toString();
    }
}

with proper factory

package test.utils;

public class QueryFactory implements Factory<Query> {

    @Inject
    private UriInfo uriInfo;

    @Override
    public Query provide() {
        Query query = new Query();
        Iterator<String> it = uriInfo.getQueryParameters().keySet().iterator();

        if(it.hasNext()) {
            String key = it.next();
            List<String> valueList = uriInfo.getQueryParameters().get(key);
            String value;
            if(valueList.isEmpty())
                value = "no value";
            else
                value = valueList.get(0);

            query.setKey(key);
            query.setValue(value);
        } else {
            query.setKey("no query");
        }
        return query;
    }

    @Override
    public void dispose(Query query) {
    }
}

Now I would like to switch to spring. I tried by adding configuration

package test.config

@Configuration
@ComponentScan("test")
public class SpringConfiguration {

    @Autowired
    QueryFactory queryFactory;

    @Bean
    public Query query() throws Exception {
        return queryFactory.getObject();
    }
}

updating web.xml

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<listener>
    <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>

<context-param>
    <param-name>contextClass</param-name>
    <param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</context-param>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>test.config.SpringConfiguration</param-value>
</context-param>

changing TestResource

package test.service;

@Path("/test")
@Component
public class TestResource {

    @Autowired
    private Query query;

    @GET
    public String test() {
        return "found: " + query.toString();
    }
}

并将 annotation 添加到 QueryFactory

@Component
@Scope("request")
public class QueryFactory implements FactoryBean<Query>

我知道 RequestContextListener 是处理请求范围所必需的。但是,当我 运行 它时,我得到异常告诉我

`java.lang.IllegalStateException: No thread-bound request found:` 

您指的是实际 Web 请求之外的请求属性,还是在原始接收线程之外处理请求?如果您实际上是在网络请求中操作并且仍然收到此消息,则您的代码可能 运行ning 在

之外

DispatcherServlet/DispatcherPortlet:

在这种情况下,使用 RequestContextListener 或 RequestContextFilter 公开当前请求。

可笑的是,我已经将 RequestContextListener 添加到 web.xml。

如果我 运行 没有设置 ContextLoaderListener,那么我会在 TestResource 中得到 NullPointerException,因为查询为空。

我看不出有什么问题。你能告诉我应该如何正确完成这个配置吗?

问题是您告诉 Spring QueryFactory 有一个请求范围

@Component
@Scope("request")
public class QueryFactory

所以,这个对象只存在于网络请求的中间。但是您正试图在 Web 请求之外使用它。

@Autowired
QueryFactory queryFactory;

在Exception里可以看到

Are you referring to request attributes outside of an actual web request