将Jersey应用程序部署到Tomcat - 资源404

时间:2014-09-16 18:26:12

标签: java maven tomcat jersey jax-rs

我有一棵看起来像这样的树:

enter image description here

在java文件夹中,我有一个包com.example.project,其中包含Main类和Application类,其子类为ResourceConfig

@ApplicationPath("api")
public class Application extends ResourceConfig {
    public Application() {
        packages("com.example.project");
        property(MustacheMvcFeature.TEMPLATE_BASE_PATH, "templates");
        register(MustacheMvcFeature.class);
        register(MyRequestFilter.class);
    }
}

在开发中,我运行Main类并启动Grizzly服务器:

public class Main {

    public static HttpServer startServer(String BASE_URI) {
        final Application app = new Application();
        return GrizzlyHttpServerFactory.createHttpServer(URI.create(BASE_URI), app);
    }

    public static void main(String[] args) throws IOException {
        String BASE_URI = "http://localhost:8080/api";
        final HttpServer server = startServer(BASE_URI);

        server.getServerConfiguration().addHttpHandler(
                new StaticHttpHandler("src/main/webapp"), "/");

        System.out.println(String.format(
                "Jersey app started with WADL available at "
                + "%s/application.wadl\nHit enter to stop it...", BASE_URI)
        );

        System.in.read();
    }
}

Grizzly服务器的一切正常。我现在正在尝试部署到tomcat。

我使用mvn package创建一个war文件。在我的pom文件中,我有:

<build>
    ...
        <plugins>
        ...
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                </configuration>
            </plugin>

我将war文件放在tomcat实例下的webapps目录中,并在那里爆炸。我的静态内容已经提供。

来自WAR文件的目录布局如下所示:

[vagrant@vagrant-centos6 project]$ tree .
.
├── index.html
| ... <webapp content>
├── META-INF
│   ├── MANIFEST.MF
│   └── maven
│       └── com.example.project
│           └── project
│               ├── pom.properties
│               └── pom.xml
└── WEB-INF
    ├── classes
    │   ├── com
    │   │   └── example
    │   │       └── project
    │   │           ├── Application.class
    │   │           ├── Main.class
    |   |           ...
    │   ├── filter-dev.properties
    │   ├── filter-test.properties
    │   ├── hibernate.cfg.xml
    │   └── templates
    │       └── foo.mustache
    └── lib
       ...

我找不到任何REST服务。我尝试的一切都是404。

tomcat webapps中的目录为projectjavax.ws.rs.ApplicationPathapi@Pathservice。所以,我希望得到/project/api/service的回复。但是,在尝试了很多组合后,一切都是404。

2 个答案:

答案 0 :(得分:0)

你有使用Jersey的servlet实现的web.xml吗?如果没有,你是否有一个用@WebServlet注释的servlet类来初始化Jersey?

答案 1 :(得分:0)

您需要将jersey-servlet.jar添加到war文件中。

pom.xml中,可能如下所示:

   <dependency>
        <groupId>org.glassfish.jersey.containers</groupId>
        <artifactId>jersey-container-servlet</artifactId>
        <version>${jersey.version}</version>
    </dependency>