我创建了一个使用RestEasy作为RESTful应用程序框架的Web应用程序Maven项目。
我的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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>me.randytan.inconium</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>
<context-param>
<param-name>resteasy.servlet.mapping.prefix</param-name>
<param-value>/v1/api</param-value>
</context-param>
<context-param>
<param-name>resteasy.scan</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>resteasy.scan</param-name>
<param-value>true</param-value>
</context-param>
<listener>
<listener-class>
org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
</listener-class>
</listener>
<servlet>
<servlet-name>resteasy-servlet</servlet-name>
<servlet-class>
org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>resteasy-servlet</servlet-name>
<url-pattern>/v1/api/*</url-pattern>
</servlet-mapping>
</web-app>
我已将自动扫描设置为true,并创建了一些类,以满足我的端点访问。
但问题是,即使我已经在我的课程中指定了端点参数,我的浏览器也会发现&#34; 404找不到&#34 ;.
示例端点网址:http://localhost:8080/me.randytan.inconium/v1/api/app/test
这是我制作的样本课:
package me.randytan.inconium.controller;
import java.sql.Connection;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Response;
@Path("app")
public class AppTransaction {
public AppTransaction(){ //do something
}
@GET
@Path("/test")
public String test(){
return "Hello World";
}
...
我尝试将班级中的@Path
更改为:
@Path("/app")
@Path("app")
并且函数test()
内的路径为:
@Path("/test")
@Path("test")
但两者都不起作用。
我的项目规范:
答案 0 :(得分:2)
我终于成功了。
最好通过创建主应用程序并在web.xml
样品:
import java.util.HashSet;
import java.util.Set;
import javax.ws.rs.core.Application;
public class MainApplication extends Application {
private Set<Object> singletons = new HashSet<Object>();
private Set<Class<?>> empty = new HashSet<Class<?>>();
public MainApplication() {
//generate the main class of the framework;
try{
//custom function. not necessary
} catch (Exception e){
e.toString();
}
//add singletons to Restful Transaction API;
this.singletons.add(new AppTransaction());
}
public Set<Class<?>> getClasses()
{
return this.empty;
}
public Set<Object> getSingletons()
{
return this.singletons;
}
}
然后调用Application
web.xml
<servlet>
<servlet-name>resteasy-servlet</servlet-name>
<servlet-class>
org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>me.randytan.inconium.controller.MainApplication</param-value>
</init-param>
</servlet>