我正在做一个项目,我需要使用apache tomcat创建一个java web项目。
我使用以下指南开始初始配置:
但是每当我使用apache tomcat 7运行时,我都会收到HTTP状态404(我有一个类似于该指南的熟悉的URL:http://localhost:8080/AutomatizationWebService/)。在控制台中它说tomcat已经启动了
我已经看到了其他堆栈的页面,我应该添加/删除服务器,清理,更改服务器的lcoation radiobutton,切换位置但似乎没有任何工作
这是我的pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>WebService</groupId>
<artifactId>AutomatizationPackage</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<finalName>AutomatizationWebService</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
我的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>AutomatizationWebService</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>
</web-app>
谢谢您的时间
答案 0 :(得分:0)
根据您的说法,您的服务器运行正常,但无法找到您要查找的文件。
同样在示例中,您正在查看它运行localhost:8080 / Sampleweb not localhost:8080 / automizationwebservice
答案 1 :(得分:0)
我从这个http://www.javainstance.com/2016/10/creating-first-web-application-using.html网站下载并部署了应用程序,如果您添加配置,它就可以使用。
如果您从该链接创建了完全相同的项目,那么您需要的只是pom.xml中的javax.servlet依赖项,因为* .jsp文件正在尝试查找javax.servlet。
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
我希望它有所帮助。