我想在要从maven加载的tomcat嵌入式服务器上部署Web应用程序: 我的休息终点:
@Path("/test")
public class RestTestController {
@GET
public String doNothing(){
return "A";
}
}
和Maven设置:
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8080</port>
<path>/</path>
</configuration>
</plugin>
</plugins>
</build>
在执行mvn clean install
和更高版本的mvn tomcat7:run
之后,我收到消息war warmcat已启动,但是当我输入localhost:8080 / test时,我会不断收到404 Not Fount Http响应。我可能做错了什么?
我应该在web.xml中添加某种映射吗?
登录tomcat表示我确实部署了我的应用程序:
[INFO] ---------------------< pl.wachkar:take-restaurant >---------------------
[INFO] Building take-restaurant 1.0-SNAPSHOT
[INFO] --------------------------------[ war ]---------------------------------
[INFO]
[INFO] >>> tomcat7-maven-plugin:2.2:run (default-cli) > process-classes @ take-restaurant >>>
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ take-restaurant ---
(...)
[INFO] --- tomcat7-maven-plugin:2.2:run (default-cli) @ take-restaurant ---
[INFO] Running war on http://localhost:8080/
@EDIT 空的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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
</web-app>
答案 0 :(得分:0)
您的web.xml是什么样的?您将至少需要一个欢迎文件列表,以便Tomcat知道在启动时要提供哪个文件
例如:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
答案 1 :(得分:0)
我认为您在浏览器中输入了错误的网址(可能不完整)。如果不使用web.xml,则应创建一个扩展Application
类并由@ApplicationPath("anyString")
进行注释的类
例如:
import javax.ws.rs.core.Application;
@ApplicationPath("myWebservice")
public class MyConfig extends Application{
}
您不需要实现任何可以正常工作的方法。此类可以在任何包中。 用于测试正确的网址是:
localhost:port/contextpath/string1/string2
string1是您在“应用程序注释”中指定的内容(此处为myWebservice) string2是您在资源类的Path注释中指定的(在您的案例测试中),所以我们有
localhost:8080/contextpath/myWebservice/test