@PathParam获取空值

时间:2013-12-15 21:26:08

标签: java web-services rest

感谢您的帮助,即使您刚刚阅读它。

问题:返回值为null为什么? 检查了很多论坛,一切似乎都很好,但事实并非如此。

package pack.bb;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;

@Path("path")
public class test {
    @GET
    @Path("{sorted}")
    public String getsortedContactList(@PathParam("list") String list) //throws SQLException
    {
        System.out.println("GET list: " + list);
        return "get " + list;
    }
}

我使用的是localHost 8080

"localHost:8080/testCap/api/path/aaaa"

这是web.xml文件。我认为这是正确的,因为我在其他项目中使用它

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Factorial_RESTapp</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>

  <servlet>
    <servlet-name>Jersey REST Service</servlet-name>
    <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
    <init-param>
        <param-name>com.sun.jersey.config.property.packages</param-name>
        <param-value>pack.bb</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
        <servlet-name>Jersey REST Service</servlet-name>
        <url-pattern>/api/*</url-pattern>
  </servlet-mapping>
</web-app>

运行后,我在控制台中得到了这个结果:

GET list:null

1 个答案:

答案 0 :(得分:5)

应该是

@Path("/{list}")
public String getsortedContactList(@PathParam("list") String list)

而不是{sorted}。第一个@Path标识url中的部分,然后@PathParam告诉它使用哪个变量,因此它们必须匹配。最后一个,变量名,可以是任何东西。