`
阅读更多
1.使用struts2不要一股脑的把所有的jar包都考进入。
2.关于struts2的暂时不能解决的问题
控制台显示信息:
2010-6-23 22:05:41 org.apache.tomcat.util.digester.SetPropertiesRule begin
警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:HibernateWizardWeb' did not find a matching property.
2010-6-23 22:05:41 org.apache.tomcat.util.digester.SetPropertiesRule begin
警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:web' did not find a matching property.
2010-6-23 22:05:41 org.apache.catalina.core.AprLifecycleListener init
信息: An older version 1.1.9 of the APR based Apache Tomcat Native library is installed, while Tomcat recommends version greater then 1.1.10
2010-6-23 22:05:41 org.apache.catalina.core.AprLifecycleListener init
信息: Loaded APR based Apache Tomcat Native library 1.1.9.
2010-6-23 22:05:41 org.apache.catalina.core.AprLifecycleListener init
信息: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2010-6-23 22:05:41 org.apache.coyote.http11.Http11AprProtocol init
信息: Initializing Coyote HTTP/1.1 on http-8081
2010-6-23 22:05:41 org.apache.coyote.ajp.AjpAprProtocol init
信息: Initializing Coyote AJP/1.3 on ajp-8009
2010-6-23 22:05:41 org.apache.catalina.startup.Catalina load
信息: Initialization processed in 848 ms
2010-6-23 22:05:41 org.apache.catalina.core.StandardService start
信息: Starting service Catalina
2010-6-23 22:05:41 org.apache.catalina.core.StandardEngine start
信息: Starting Servlet Engine: Apache Tomcat/6.0.18
2010-6-23 22:05:42 com.opensymphony.xwork2.util.logging.commons.CommonsLogger info
信息: Parsing configuration file [struts-default.xml]
2010-6-23 22:05:42 com.opensymphony.xwork2.util.logging.commons.CommonsLogger info
信息: Unable to locate configuration files of the name struts-plugin.xml, skipping
2010-6-23 22:05:42 com.opensymphony.xwork2.util.logging.commons.CommonsLogger info
信息: Parsing configuration file [struts-plugin.xml]
2010-6-23 22:05:42 com.opensymphony.xwork2.util.logging.commons.CommonsLogger info
信息: Unable to locate configuration files of the name struts.xml, skipping
2010-6-23 22:05:42 com.opensymphony.xwork2.util.logging.commons.CommonsLogger info
信息: Parsing configuration file [struts.xml]
2010-6-23 22:05:42 org.apache.coyote.http11.Http11AprProtocol start
信息: Starting Coyote HTTP/1.1 on http-8081
2010-6-23 22:05:42 org.apache.coyote.ajp.AjpAprProtocol start
信息: Starting Coyote AJP/1.3 on ajp-8009
2010-6-23 22:05:42 org.apache.catalina.startup.Catalina start
信息: Server startup in 1190 ms

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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>HibernateWizardWeb</display-name>
 
  <filter>
  <filter-name>struts</filter-name>
  <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
  <init-param>
  <param-name>struts.action.extension</param-name>
  <param-value>action</param-value>
  </init-param>
 
  </filter>

  <filter-mapping>
  <filter-name>struts</filter-name>
  <url-pattern>/*</url-pattern>
  </filter-mapping>
 
  <welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

struts.xml
<!DOCTYPE struts PUBLIC  
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"  
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="main" extends="struts-default" >
        <global-results>
        <result name="login">/login.jsp</result>
        </global-results>
        <action name="loginAction"       class="com.helloweenvsfei.struts.action.LoginAction">
<result name="success">/welcome.jsp</result>
</action>
</package>
</struts>

显示404错误,这是什么原因呢?

解决方法1:双击server的tomcat服务器,勾选publish module contexts to separate XML files.第一个警告和第二个警告解决。
        2.struts应该放在src目录下,可配置。



0
0
分享到:
评论

相关推荐

    struts入门与实践.zip

    本资料"struts入门与实践.zip"是一个压缩包,包含了关于Struts框架的基础知识和实战教程。 Struts的核心概念包括: 1. **Action类**:在Struts中,Action类是业务逻辑的主要载体。它负责接收来自客户端的请求,...

    struts入门最简单例子

    这个"struts入门最简单例子"旨在帮助初学者快速理解并掌握Struts2的基本用法。Struts2框架提供了丰富的功能,如动作映射、结果类型、拦截器、动态方法调用等,使得开发者能够构建结构清晰、可维护性强的Web应用程序...

    struts 入门与实践

    struts 入门与实践

    struts入门源代码

    本资源“struts入门源代码”旨在为初学者提供一个基础的入门教程,帮助理解Struts框架的工作原理和实际应用。 在Struts框架中,Controller部分通常由Action类实现,它负责接收用户请求,调用相应的业务逻辑(Model...

    struts入门(中文版).pdf

    本资源"struts入门(中文版).pdf"为初学者提供了一个全面的 Struts 学习指南,涵盖了从基础配置到高级特性的多个方面。 1. **环境配置**:在开始使用 Struts 之前,你需要先搭建开发环境。这通常包括安装 Java ...

    struts入门[文字版][中文].

    Struts入门 作者:余立非 本书为入门者准备的,其中讲述了Struts的一些基础东西。请读者首先能建立一个Struts的开发环境,其次了解Struts基础的东西,由MVC的概念进入Struts。 目录 前言 简介 第一章 配置环境 第二...

    struts入门简单例子

    这个“struts入门简单例子”旨在为初学者提供一个基础的 Struts 应用示例,帮助理解 Struts 的核心概念和工作流程。 1. **MVC设计模式**:Struts 是基于 Model-View-Controller (MVC) 设计模式的,它将应用的业务...

    Struts入门.rar

    Struts入门 作者:余立非 本书为入门者准备的,其中讲述了Struts的一些基础东西。请读者首先能建立一个Struts的开发环境,其次了解Struts基础的东西,由MVC的概念进入Struts。 本书的目的是使你快速入门。本书的...

    struts入门(中文版)

    在Struts入门的过程中,首先需要了解的是Struts的基本架构。Struts的核心是ActionServlet,它是控制器,负责处理所有的HTTP请求,并根据配置文件决定调用哪个Action来处理请求。Action类是业务逻辑的载体,它会与...

    Struts入门实例:通讯录

    在这个"Struts入门实例:通讯录"中,我们将探讨如何使用Struts框架来创建一个简单的通讯录应用。 首先,了解通讯录应用的基本需求。该应用应具备添加、查看、编辑和删除联系人的功能。在Struts框架下,这些功能通常...

    struts入门(中文版)pdf

    本篇将深入探讨Struts入门的相关知识点,包括其核心概念、工作原理以及实际应用。 一、Struts的基本概念 1. MVC模式:MVC模式是软件工程中一种用于分离业务逻辑、用户界面和数据存储的设计模式。在Struts中,模型...

    struts入门与实践

    struts入门与实践 struts入门的好助手,深入浅出,精辟易懂

    struts入门小程序

    这个“Struts入门小程序”旨在帮助初学者理解并掌握Struts框架的基本用法和核心概念。通过提供的多个模块,我们可以深入学习到Struts在实际应用中的常见场景。 首先,我们来看登陆模块。在Web应用程序中,用户登录...

    Struts 入门好文章

    ### Struts 入门知识点详解 #### 一、概述 本文档通过介绍一个简单的Struts应用实例——`helloapp`,帮助读者快速掌握Struts框架的基础知识与开发流程。`helloapp`应用的核心功能是接收用户的姓名输入,并返回个性...

    Java Struts入门学习指南.rar

    在Java Struts入门学习中,首先要理解的是MVC设计模式。Model代表应用程序的数据模型,View负责显示数据,Controller接收用户请求并调用相应的Model和View进行处理。Struts框架将这些元素整合在一起,为开发者提供了...

    经典struts入门(中文PDF版)

    这个"经典struts入门(中文PDF版)"资源对于初学者来说是一个很好的起点,它包含详细的讲解和项目制作截图,使得学习过程更加直观易懂。 Struts框架的核心组件包括: 1. **ActionServlet**:这是Struts框架的入口点...

    Struts入门(适合初学者)

    在Struts入门学习中,首先需要理解MVC设计模式。MVC模式是一种将业务逻辑、数据和用户界面分离的设计方式。Model代表应用的数据模型,负责处理业务逻辑;View是用户界面,用于展示数据;Controller是两者之间的桥梁...

    Struts 入门实践 随书光盘

    在《Struts 入门实践》这本书中,作者详细介绍了如何使用Struts进行实际的Web开发。 首先,Struts框架的核心概念包括Action、ActionForm、Dispatcher Servlet(也就是Struts Controller)和配置文件。Action是处理...

Global site tag (gtag.js) - Google Analytics