zoukankan      html  css  js  c++  java
  • Struts2中的Unable to load configuration错误的分析与解决方法

    当我们遇到 Unable to load configuration. 这样的错误时,可以根据具体的错误提示找出错误的原因。

    Unable to load configuration. - interceptor-ref - file:/D:/Java/apache-tomcat-6.0.32/webapps/examquestions/WEB-INF/classes/struts.xml:28:49 at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:58) ... Caused by: Unable to find interceptor class referenced by ref-name excludeParamsStack - interceptor-ref - file:/D:/Java/apache-tomcat-6.0.32/webapps/examquestions/WEB-INF/classes/struts.xml:28:49 at com.opensymphony.xwork2.config.providers. InterceptorBuilder.constructInterceptorReference(InterceptorBuilder.java:52) ...

    遇到这种错误,查看上面的:

    Unable to load configuration. - interceptor-ref - file:/D:/Java/apache-tomcat-6.0.32/webapps/examquestions/WEB-INF/classes/struts.xml:28:49

    发现提示 struts.xml的28行49列出错了,找打相对应的位置,发现是这段代码:

    <interceptor-ref name="excludeParamsStack" 

    继续查看的下面的Caused by这段提示,发现这里提示找不到引用的拦截器:excludeParamsStack,经过检查发现,原来是忘了在struts.xml文件中定义excludeParamsStack这个拦截栈。

    解决方法就是在struts.xml中添加如下配置:
    <interceptors> <interceptor-stack name="excludeParamsStack"> <interceptor-ref name="defaultStac
  • 相关阅读:
    二级缓存配置和原理
    延迟加载
    proxy和no-proxy的策略取值的区别
    inverse理解
    Java Spring mvc 操作 Redis 及 Redis 集群
    章节6 关联映射 (转载)
    8.28笔记
    8.26函数相关练习
    8.26 课堂自由笔记 还有考皮的老师笔录
    大话设计模式1.0.2-----策略模式 单一职责原则 和 开放-封闭原则
  • 原文地址:https://www.cnblogs.com/Seachal/p/4957490.html
Copyright © 2011-2022 走看看