当前位置: 首页 > 知识库问答 >
问题:

使用Tomcat的Eclipse-Maven项目收到404错误

叶光华
2023-03-14

我上网想知道为什么我收到404我尝试了几乎所有的解决方案,但没有帮助。我有:

  1. 日食照片
  2. Tomcat 9
  3. Java版本1.8
  4. 使用Jersey 2.27的Maven项目

当我点击http://localhost:8080/test/rest/testservice时,我得到了404“描述:源服务器没有找到目标资源的当前表示形式,或者不愿意透露存在此表示形式。

html lang-html prettyprint-override"><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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>Test</groupId>
  <artifactId>com.test</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <name>com.test Maven Webapp</name>
  <url>http://maven.apache.org</url>
<dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
	<dependency>
		<groupId>org.glassfish.jersey.core</groupId>
		<artifactId>jersey-server</artifactId>
		<version>2.27</version>
	</dependency>
	<dependency>
		<groupId>org.glassfish.jersey.containers</groupId>
		<artifactId>jersey-container-servlet</artifactId>
		<version>2.27</version>
	</dependency>
	<dependency>
		<groupId>org.glassfish.jersey.inject</groupId>
		<artifactId>jersey-hk2</artifactId>
		<version>2.27</version>
	</dependency>
    <dependency> 
   		<groupId>javax.xml.bind</groupId> 
   		<artifactId>jaxb-api</artifactId> 
  		<version>2.2.6</version> 
</dependency>
    
  </dependencies>
  <build>
  <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
    <finalName>com.test</finalName>
  </build>
</project>
<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>
  <servlet>
<servlet-name>Test Jersey Service</servlet-name>

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
	<init-param>
	<param-name>jersey.config.server.provider.packages</param-name>
	<param-value>com.test</param-value>
	</init-param>
	<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
	<servlet-name>Test Jersey Service </servlet-name>
	<url-pattern>/rest/*</url-pattern>
</servlet-mapping>

</web-app>

项目结构和JAVA类

  1. 我已经在部署程序集中添加了->Maven依赖项

共有1个答案

左丘耀
2023-03-14

我解决了。因此,如果有人在使用404时遇到问题,即使你做了所有正确的事情,那么请仔细检查以下步骤:

>

  • 进行任何类型的修改时,始终保存(CTR+S)pom.xml和web.xml

    用index.html替换index.jsp

  •  类似资料:
    • 问题内容: 我正在尝试使用最新的里程碑版本尝试下一个Eclipse版本,但是在将Maven项目部署到Tomcat时遇到了问题。 以前在Eclipse 3.6中,从SVN签出后,我的项目自动作为Web项目启用。我已经在3.7中签出了我的项目,但是没有任何指示它可以作为Web项目运行的内容(例如,尝试运行该项目并没有给我通常的“在服务器上运行”选项)。 我安装的是Indigo RC4“面向Java E

    • 为了实现这一点,我遵循了简单的步骤。将Tomcat和Maven与eclipse集成。1.打开eclipse。新的-

    • 我正在使用m2e插件在eclipse中开发一个java maven项目。我更新了我的系统和我的jvm从Icedtea-bin-6.1.11.4更新到Icedtea-bin-6.1.11.5。Eclipse现在在我的pom文件中输出下面的错误,我无法运行我的项目。我是maven和eclipse的新手,在搜索了一天之后,我仍然没有找到解决方案。 我个人认为这是eclipse的某种问题(配置错误?),因

    • HTTP Status 404-/StrutsHelloWorld/Login.jsp类型状态报告消息/StrutsHelloWorld/Login.jsp说明请求的资源(/StrutsHelloWorld/log in . JSP)不可用。Apache Tomcat/7.0.26 我已经按照分步指南 http://viralpatel.net/blogs/tutorial-create-stru

    • 这真是令人难以置信的沮丧。 我已经部署了一个webapp在Eclipse/Tomcat中进行调试。我选择了“使用Tomcat安装”单选按钮来使用我自己的服务器。这都很好。但当我尝试访问我的web应用程序时,我得到一个404错误。我可以看到它已经部署在wptwebapps文件夹中。日志只显示404。我可以很好地访问manager应用程序,它显示我的web应用程序已经部署。 我做了清理/重新发布,重新

    • 我正在学习RESTfulWeb服务教程http://www.concretepage.com/spring-4/spring-4-rest-web-service-json-example-tomcat.Is具有spring框架依赖项。我没有下载二进制文件并将其放入lib目录,而是在pom中包含了一个依赖项。xml类似 当我右键单击-