我有一棵看起来像这样的树:
在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中的目录为project
,javax.ws.rs.ApplicationPath
为api
,@Path
为service
。所以,我希望得到/project/api/service
的回复。但是,在尝试了很多组合后,一切都是404。
答案 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>