0

我可以看到 FilterDispatcher 被调用(由调试器),但它似乎没有找到要调用的服务。我很难理解 RestEasy 是如何在 Spring 和 RestEasy 中定义的资源之间实际映射的。

主要故事:获取http://my.local.no:8087/rest/typeaheads/h仅呈现 404

网页.xml

...
<context-param>
    <param-name>resteasy.servlet.mapping.prefix</param-name>
    <param-value>/rest</param-value>
</context-param>
<listener>
    <listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap</listener-class>
</listener>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
    <filter-name>restFilterDispatcher</filter-name>
    <filter-class>org.jboss.resteasy.plugins.server.servlet.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
    <filter-name>restFilterDispatcher</filter-name>
    <url-pattern>/rest/*</url-pattern>
</filter-mapping>
...

resteasy资源由bean设置:

@Configuration
@ComponentScan(basePackageClasses = TypeaheadsRestService.class)
public class SpringConfig {
}

TypeaheadsRestService.java

@Resource
@Path("/typeaheads")
public class TypeaheadsRestService {
    @GET
    @Path("/{search}")
    @Produces(MediaType.APPLICATION_JSON)
    public List<NameUrl> get(@PathParam("search") String search) {
        ...
    }
}
4

1 回答 1

2

RestEasy SpringContextLoaderListener似乎是缺少的部分。我从 RestEasy 示例中创建了一个精简的问题并使用它。但是对于我稍微复杂一些的应用程序,它不起作用。这可能是因为它覆盖了已弃用的createContextLoader方法。在 Spring 3中ContextLoaderListener是 ContextLoader 的一个实例。所以我重新实现它是这样的:

public class MyContextLoaderListener extends ContextLoaderListener {
    private SpringContextLoaderSupport springContextLoaderSupport = new SpringContextLoaderSupport();
    @Override
    protected void customizeContext(ServletContext servletContext, ConfigurableWebApplicationContext applicationContext) {
        super.customizeContext(servletContext, applicationContext);
        this.springContextLoaderSupport.customizeContext(servletContext, applicationContext);
    }
}

我最初尝试在 bean 初始化中执行customizeContext(...) 。这在 RestEasy 2.2.1.GA 中有效,但在 2.3.4.FINAL 中无效。

于 2013-04-05T10:36:39.717 回答