休息服务404错误 - Jersey / tomcat8

时间:2015-07-11 06:14:42

标签: java rest maven tomcat jersey

过去几天我一直在尝试使用很多示例,但我无法使REST服务运行。我有tomcat8(Ubuntu 14.x)/ Jersey。 有什么想法吗?

pom.xml片段

<dependencies>
    <dependency>
        <groupId>javax.ws.rs</groupId>
        <artifactId>jsr311-api</artifactId>
        <version>1.1.1</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>com.sun.jersey</groupId>
        <artifactId>jersey-server</artifactId>
        <version>1.18.1</version>
    </dependency>
    <dependency>
        <groupId>com.sun.jersey</groupId>
        <artifactId>jersey-servlet</artifactId>
        <version>1.18.1</version>
    </dependency>
</dependencies>

web.xml片段

 <servlet>
    <servlet-name>RestService</servlet-name>
    <!--servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class-->
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
             <init-param>
        <param-name>com.sun.jersey.config.property.packages</param-name>
<!--param-name>jersey.config.server.provider.packages</param-name-->
        <param-value>mail.service</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>RestService</servlet-name>
    <url-pattern>/rest/*</url-pattern>
  </servlet-mapping>

tomcat启动时没有错误:

  

2015年7月11日11:23:08.327 INFO [localhost-startStop-8]   com.sun.jersey.server.impl.application.WebApplicationImpl._initiate   启动Jersey应用程序,版本&泽西:1.18.1 02/19/2014   上午03:28&#39; 11-Jul-2015 11:23:08.795 INFO [localhost-startStop-8]   org.apache.catalina.startup.HostConfig.deployWAR部署web   应用档案   /home/apcuser/tomcat8/apache-tomcat-8.0.24/webapps/ExProcess.war有   在1,488毫秒完成

休息服务类:

package mail.service;

import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Request;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriInfo;
import javax.xml.bind.JAXBElement;

//import org.slf4j.Logger;
//import org.slf4j.LoggerFactory;

@Path("restservice")
public class RestService {
        @Context
        UriInfo uriInfo;
        @Context
        Request request;
        String id;

        @GET
        @Path("{name}")
        public String sayHello(@PathParam("name") String name){
            return "Hello " + name;
        }

}

结果:

  

HTTP状态404 - / rest / restservice / TestName

更新:我无法弄清楚我的项目有什么问题,只是从头开始:http://javabrains.koushik.org/courses/javaee_jaxrs/lessons/Setting-Up 它现在有效。

2 个答案:

答案 0 :(得分:1)

@Path("/restservice")
public class RestService {
        @Context
        UriInfo uriInfo;
        @Context
        Request request;
        String id;

        @GET
        @Path("/{name}")
        @Produces(MediaType.TEXT_PLAIN)
        public String sayHello(@PathParam("name") String name){
            return "Hello " + name;
        }

}

http 404是找不到文件的错误,因为您没有将/附加到@Path注释值,所以您收到此错误。

@Path("restservice")应为@Path("/restservice")@Path("{name}")应为@Path("/{name}")

编辑更新 -

添加@Produces(MediaType.TEXT_PLAIN)

答案 1 :(得分:-1)

您尝试关注

web.xml中的更改

  <servlet-mapping>
    <servlet-name>RestService</servlet-name>
    <url-pattern>/*</url-pattern>
  </servlet-mapping>

并在servlet中

@Path("/rest/restservice/")
public class RestService {
        @Context
        UriInfo uriInfo;
        @Context
        Request request;
        String id;

        @GET
        @Path("/{name}/")
        public String sayHello(@PathParam("name") String name){
            return "Hello " + name;
        }

}

另外,我看到你评论了代码。但是你清除了webapps目录吗?停止tomcat容器 - &gt;转到webapps目录 - &gt;删除文件夹ExProcess(不是战争) - &gt;启动容器。