Struts2 404错误 - 基本练习

时间:2017-10-20 10:43:34

标签: java struts2 struts-config

我正在学习struts2框架,我正在尝试进行第一次练习(遵循指南)。

练习是一个简单的Hello World ...

当我在服务器上运行我的应用程序时,页面显示错误404,请求的资源不可用。

我不知道为什么。我搜索了关于这个问题的其他问题,但他们解决了,添加了一个丢失的库和其他东西,但是不能和我合作...

其他用户的应用程序工作,Tomcat服务器正确地重定向我使用经典的localhost:8080 ..

那么如何解决我的问题?

这是我的代码: 的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>PrimoEsercizio</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>

<filter>
      <filter-name>struts2</filter-name>
      <filter-class>
        org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
      </filter-class>
   </filter>

<filter-mapping>
      <filter-name>struts2</filter-name>
      <url-pattern>/*</url-pattern>
</filter-mapping>

</web-app>

struts.xml中

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
   "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
   "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
  <constant name="struts.devMode" value="true"></constant>

    <package name="default" extends="struts-default">
        <action name="getMessage" class="primoPackage.TutorialAction" method="execute">
            <result name="success">/success.jsp</result>
            <result name="failure">/error.jsp</result>          
        </action>
    </package>

</struts>

TutorialAction.java类

包primoPackage;

public class TutorialAction {

        public String execute() {
            System.out.println("Ciao, ecco il primo execute");
            return "success";
        }
}

success.jsp页面

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Error</title>
</head>
<body>
<p>Reindirizzamento avvenuto con successo!</p>
</body>
</html>

libreries struts2

libreries project proprieties

0 个答案:

没有答案