刚刚配置struts2,无法使用

问题描述

刚刚配置struts2,无法使用

进如tomcat后天管理面板, 刚刚建立的test没有start,点击start后,tomcat后台提示如下:
INFO: Server startup in 2389 ms
十月 16, 2013 1:04:40 下午 com.opensymphony.xwork2.util.logging.jdk.JdkLogger in
fo
INFO: Parsing configuration file [struts-default.xml]
十月 16, 2013 1:04:40 下午 org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
十月 16, 2013 1:04:40 下午 org.apache.catalina.core.StandardContext start

SEVERE: Context [/test] startup failed due to previous errors

struts的配置文件如下:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">

<package name="test" extends = "struts-default">
    <action name = "login" class = "com.liao.action.LoginAction">
        <result name = "success">/index.jsp</result>
        <result name = "input">/login.jsp</result>
    </action>
</package>

求解答,谢谢!

解决方案

filter 你配置错了

时间: 2024-11-01 20:50:47

刚刚配置struts2,无法使用的相关文章

配置Struts2的struts.properties

struts.properties文件在WEB-INF/classes目录下存放. 这个文件用来配置Struts2系统的一些基本规约,所有在struts.properties中配置的内容都可以在struts.xml中配置,或者web.xml中在struts2 filter中配置,例如: Struts.properties中的如下配置: struts.i18n.encoding=UTF-8 相当于struts.xml中的如下配置: <constant name="struts.i18n.en

namespace-通过配置struts2跳转到普通html页面

问题描述 通过配置struts2跳转到普通html页面 我想通过写一个action,然后配置struts的xml文件,跳转到一个普通的html页面,里面就纯文本和图片,但是不知道怎么弄,代码如下: action类代码 public class ZhishiAction extends BaseAction{ public String knowledge(){ return SUCCESS; } } struts的配置 /pages/knowledge/index.html 解决方案 配置str

MyEclipse中配置struts2.2.1的方法

 1,首先就是要建立一个web project项目 2,设置jdk和servers路径,如果jdk和servers已经配置ok,跳过这一步骤. 在菜单中的window选项中配置jdk和servers 对于jdk,点击java-.>找到jre那个东西,然后输入你的jdk安装目录 对于servers,点击myEclipse中的servers中的tomcat,一定记得要选择上面的enable 然后,在找到你的安装地方 3,配置struts 一共要做四件事 第一个 首先就是在你的struts2解压的包中

IntelliJ idea中怎么配置struts2

问题描述 刚用IntelliJidea没多久想用struts2测试一下,我将struts.xml放到src目录下,libraries中也添加了strut2的jar包,但是启动Tomcat是只是报异常:Unabletoloadconfiguration.-bean-jar:file:/E:/Y2/AJAXWebapps/out/exploded/testWeb/WEB-INF/lib/struts2-core.jar!/struts-default.xml:46:178看不懂啊!哪位高手帮帮忙咯!

Eclipse配置Struts2问题:ClassNotFoundException: org...dispatcher.ng.filter.StrutsPrepareAndExecuteFilter

一开始我项目使用的是User Libraries,但是真正的jar包在其他项目上 弃用了User Libraries, 手动将Struts2的相关jar复制到/webContent/WEB-INF/lib目录下: 重新运行程序,成功! 也就是说,Tomcat默认从WEB-INF/目录下加载资源,Eclipse在发布程序的时候,并没有把User Libraries的相关资源拷贝到WEB-INF/目录下(Eclipse会把src目录下的所有非*.java文件复制到WEB-INF/classes目录下

米子SSH之路(二) SSH的配置 (2) 集成Struts2

上一篇已经讲了Spring2.5的配置,这章讲的就是怎么在Spring2.5上集成Struts. 三,在Spring2.5 集成 Struts2 3.1 修改现有的web.xml . 加上下面两段代码: <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> <

struts2中常用constant命令配置方法_java

struts.objectFactory这个属性用 于说明Struts2的 对象池创建工厂,Struts2也有自己的对象池,就像Spring那样,在配置文件中你可以引用对象池中的对象,你可以借助于Spring中的对象池, 当想要得到Spring中的对象池时,申明struts.objectFactory为Spring的对象池构建工厂.... struts.serve.static.browserCache 该属性设置浏览器是否缓存静态内容.当应用处于开发阶段时,我们希望每次请求都获得服务器的最新响

Struts2常量的配置

    struts.xml配置文件最大的作用就是配置Action和请求之间的对应关系,并配置逻辑视图名和物理视图资源之间的对应关系.除此之外,struts.xml文件还有一些额外的功能,例如Bean配置.配置常量.导入其他配置文件等.     Struts2除了可使用struts.xml文件来管理配置之外,还可使用struts.properties晚间来管理常量,该文件定义了struts2框架的大量常量,开发者可以通过改变这些常量来满足应用的需求.struts.properties文件是一个标

struts2.0-struts2配置启动报错

问题描述 struts2配置启动报错 按照 视频导入了 struts2基础jar包:根据报错提示最终放了8个jar包 启动的时候myEclipse控制台报错: 2015-9-14 14:19:42 org.apache.catalina.core.StandardContext start 严重: Error filterStart 2015-9-14 14:19:42 org.apache.catalina.core.StandardContext start 严重: Context star