我在编写REST API时遇到问题。我写了一个小客户端来测试服务,但我不断遇到异常和错误。
这是我的一些代码:
部署描述符:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>com.boss.rest.example</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>ConfigServlet</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>rest</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ConfigServlet</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
</web-app>
客户端代码:
public static void main(String[] args)
try {
String url_str = "http://localhost:8080/com.boss.rest.example/api/getRandomRamp";
URL url = new URL(url_str);
HttpURLConnection c = (HttpURLConnection) url.openConnection();
c.setRequestMethod("GET");
c.setRequestProperty("Accept", "application/json");
System.out.println("Response code: " + c.getResponseCode());
System.out.println(c.getInputStream().toString());
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
和servlet代码:
@Path("/api")
public class ConfigServlet {
@Context
UriInfo uriInfo;
@GET
@Path("/getRandomRamp")
@Produces(MediaType.APPLICATION_JSON)
public Response getRandomRamp() {
String s = ">> This is just a random string, no real interaction with the backend available yet! <<";
System.out.println("Service SysOut: " + s);
return Response.status(200).entity(s).build();
}
}
使用此代码,我得到给定URL的FileNotFoundException。有人可以帮忙吗?非常感谢!
答案 0 :(得分:0)
我相信它引起了问题的网址。看起来您正在使用的上下文包含的句点不是有效的上下文名称。尝试将URL更改为应用程序名称(上下文),它应该可以工作。
所以
replace
"http://localhost:8080/com.boss.rest.example/api/getRandomRamp"
with
"http://localhost:8080/contextname/api/getRandomRamp"
答案 1 :(得分:0)
您如何部署应用程序?通常你必须对像Tomcat这样的服务器这样做 - 而且这个服务器按照某个名称部署它。
此外,display-name
是显示名称,没有别的。特别是不是部署位置。
答案 2 :(得分:0)
您的api路径似乎有问题。您已在2个位置定义了根路径(&#34; / api /&#34;)。一旦进入部署描述符,另一个进入Servlet。将其中一个更改为(&#34; /&#34;)