找不到404 - 在使用Jersey + ExtJS访问有效的REST服务时

时间:2014-08-13 12:10:20

标签: rest spring-mvc extjs

我正在使用ExtJS并需要访问REST服务。我尝试使用Spring的MVC REST支持功能,并且运行良好。

现在我必须使用Jersey(JAX-RS)。当尝试使用Jersey时,我一直遇到404错误。我认为注释,URL映射等都很好(因为类似的工作适用于Spring)

以下是相关的代码段。

Web.xml中

   <servlet>
    <servlet-name>spring-jersey</servlet-name>
    <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
    <init-param>
      <param-name>jersey.config.server.provider.packages</param-name>
      <param-value>com.myProducts.controller</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>

<servlet-mapping>
    <servlet-name>spring-jersey</servlet-name>
    <url-pattern>/jersey/*</url-pattern>
</servlet-mapping>

App.js

Ext.onReady(function() {

    var store = Ext.create('Ext.data.Store', {
        autoLoad: true,
        autoSync: true,
        model: 'Product',
        proxy: {
            type: 'rest',
            url: 'products',
            format: 'json',
            headers: {
                'Content-Type': 'application/json'
            },
            reader: {
                type: 'json',
                root: 'data'
            },
            writer: {
                type: 'json'
            },
            api: {
                create: 'products/createJ/',
                read: 'products/readJ/',
                update: 'products/editJ/',
                destroy: 'products/deleteJ/'
            }
        }
    });

控制器:

@Component
@Path("products/jersey/products")
public class JerseyProductsController {


    @Autowired
    private ProductService productService;

    @POST
    @Path("createJ/{id}")
    @Consumes(MediaType.APPLICATION_JSON_VALUE)
    @Produces(MediaType.APPLICATION_JSON_VALUE)
    public Product createJ(@PathParam("id") int id, @RequestBody Product myProduct) {
        myProduct.setId(id);
        return productService.create(myProduct);
    }

    @PUT
    @Path("editJ/{id}")
    @Consumes(MediaType.APPLICATION_JSON_VALUE)
    @Produces(MediaType.APPLICATION_JSON_VALUE) 
    public Product editJ(@PathParam("id") int id, @RequestBody Product myProduct) {
        myProduct.setId(id);
        return productService.update(myProduct);
    }


    @DELETE
    @Path("deleteJ/{id}")
    @Consumes(MediaType.APPLICATION_JSON_VALUE)
    @Produces(MediaType.APPLICATION_JSON_VALUE) 
    public Product deleteJ(@PathParam("id") int id) {
        return productService.delete(id);
    }

    @GET
    @Path("readJ/")
    @Consumes(MediaType.APPLICATION_JSON_VALUE)
    @Produces(MediaType.APPLICATION_JSON_VALUE)
    public List<Product> allProductsJ() {
        return productService.getAll();
    }
}

我在以下网址获得404:

Request URL:http://localhost:4080/MyProducts/products/jersey/products/readJ/.json?_dc=1407930853131&page=1&start=0&limit=25
Request Method:GET
Status Code:404 Not Found

请让我知道错过了什么。

3 个答案:

答案 0 :(得分:2)

您可能需要在网址中使用/jersey/products/jersey,因为您拥有<url-pattern>/jersey/*</url-pattern>

答案 1 :(得分:1)

我认为您的servlet映射不正确。您的网址格式为/ jersey / *,但您的网址是/ MyProducts / *

将此内容放入您的web.xml

<servlet-mapping>
<servlet-name>spring-jersey</servlet-name>
<url-pattern>/MyProducts/*</url-pattern>

答案 2 :(得分:1)

不确定问题是什么,但你可以尝试下面的一个:

<url-pattern>*.do</url-pattern>

我相信它是因为它可以捕获以.do结尾的请求,并且减少了在URL之间存在某种模式的麻烦。