`
wanxiaotao12
  • 浏览: 472194 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

No mapping found for dependency [type=com.opensymphony.xwork2.ObjectFactory, nam

阅读更多

问题原因:应该是你的struts.xml 中没有引入struts-default.xml文件。

解决方法:在 <struts> 节点下加上 <include file="struts-default.xml"/> 就可以了。

 

或都在web.xml中, <filter>
  <filter-name>struts2</filter-name>
  <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  <init-param>
       <param-name>config</param-name>
        <param-value>struts-default.xml,struts-plugin.xml,modules/struts.xml,modules/**/struts-conf/struts-*.xml</param-value>
     </init-param>
  
 </filter>

 

红色(struts-default.xml,struts-plugin.xml):是struts2需要加载的.xml文件, modules/struts.xml,modules/**/struts-conf/struts-*.xml:自己项目的配置文件

分享到:
评论

相关推荐

    com.sap.aii.mapping.api PI MAPPING开发必须jar包

    XI PI MAPPING开发必须jar包 import com.sap.aii.mapping.api.*; import com.sap.aii.mapping.api.*; import com.sap.aii.mapping.lookup.*; import com.sap.aii.mappingtool.tf7.rt.*;

    SAP PI Java Mapping com.sap.aii.mapping.api PI MAPPING开发必须jar包

    标题提到的"com.sap.aii.mapping.api PI MAPPING开发必须jar包"是Java Mapping开发的核心依赖库,它们包含了API和其他必要的组件,使得开发人员能够创建自定义的映射逻辑。以下将详细讲解SAP PI Java Mapping的开发...

    xwork-2.0.5-src

    2. **类型转换(Type Conversion)**:`com.opensymphony.xwork2.converters`包提供了类型转换的支持。XWork通过`Converter`接口实现各种数据类型的自动转换,如字符串到日期、数字等,极大地简化了开发者的工作。 ...

    hibernate 中 fetch=FetchType.LAZY 懒加载失败处理方法

    在 filter-mapping 中,我们将这个 Filter 应用到所有的 action 请求上。 除了使用 OpenSessionInViewFilter 之外,我们还可以使用 Hibernate 的 initialize 方法来强制加载关联数据。例如: ```java SetRepayment...

    delphi 2010升级到xe8后,decodestring汉字出现:No mapping for the.mht

    delphi 2010升级到xe8后,decodestring汉字出现:No mapping for the.mht

    配置struts2常见错误

    Nomapping found for dependency[type=com.opensymphony.xwork2.ObjectFactory,name='default'] in public void com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.setObjectFactory ...

    Struts2.2.3 javadoc

    8. **Struts2的异常处理**:Struts2提供了`com.opensymphony.xwork2.DefaultActionInvocation`和`com.opensymphony.xwork2.DefaultActionProxy`等类来处理异常,并通过`struts-default.xml`中的`&lt;exception-mapping&gt;...

    MySQL database interface mapping for VisualBmysqli.vb-master.zip

    MySQL database interface mapping for VisualBmysqli.vb-master.zip

    tf.keras.datasets数据源

    # because 0, 1 and 2 are reserved indices for "padding", "start of sequence", and "unknown". decoded_review = ' '.join([reverse_word_index.get(i - 3, '?') for i in x_train[0]]) print(decoded_review) ...

    struts2基础知识

    Action 类可以继承自 com.opensymphony.xwork2.ActionSupport 或实现 com.opensymphony.xwork2.Action 接口。 写一个 Struts2 框架中的 Action 有三种方式可以写一个 Struts2 框架中的 Action: 1. 只需要类中有...

    springboot+mybatis+内置tomcat示例.rar

    mybatis.mapper-locations=classpath:mapping/*Mapper.xml mybatis.type-aliases-package=entity #spring.profiles=development #server.address=127.0.0.1 #端口设置 server.port=8092 #日志配置 ...

    MybatisPageHelper分页插件

    -- 自动扫描mapping.xml文件 --&gt; &lt;property name="mapperLocations" value="classpath:mapping/*.xml"&gt; &lt;!-- &lt;property name="mapperLocations"&gt; &lt;value&gt;classpath:mapper/*.xml &lt;/property&gt; --&gt; ...

    com.sap.xpi.ib.mapping.lib

    com.sap.xpi.ib.mapping.lib.jar SAP PI JAVA MAPPING 必备JAR包

    404-PageNotFound, "404 Page Not Found" 页面的精选列表.zip

    404-PageNotFound, "404 Page Not Found" 页面的精选列表 找不到 404页 那些无聊 404页的灵感库。访问画廊墙,并选择你喜欢的 !问题大多数情况下,"找不到 404"页被积压所忽略。 但我们知道 ! 事实上,你会面临...

    spring MVC No Session found for current thread

    当我们遇到“Spring MVC No Session found for current thread”的错误时,这通常意味着在尝试访问HttpSession对象时,当前线程没有找到相关的session。这个问题可能是由于多种原因导致的,包括配置错误、过滤器设置...

    解决Django中多条件查询的问题

    首先,我们需要了解Django的ORM(Object-Relational Mapping)系统,它允许我们使用Python代码与数据库交互,而无需编写SQL语句。在Django的模型中,我们可以定义数据表结构,然后在视图函数中对这些模型进行查询。 ...

    hibernate关系映射配置.rar

    &lt;hibernate-mapping&gt; &lt;class name="com.bjsxt.hibernate.User" table="t_user"&gt; &lt;id name="id"&gt; &lt;generator class="native"/&gt; &lt;property name="name"/&gt; &lt;!-- &lt;many-to-one name="group" column=...

    asp.net c # 将数据导出到xml,并从xml导入数据

    col.ColumnMapping = MappingType.Attribute; } this.dsHR.GetXml(); } ``` ### 总结 本文详细介绍了如何使用ASP.NET和C#结合ADO.NET技术将数据集中的数据导出为XML格式,以及如何从XML文件中导入数据。通过...

    Apache Commons fileUpload实现文件上传

    &lt;input type="submit" name="submit" value="Commit"&gt; ``` **JSP 处理**: ```jsp &lt;%@ page language="java" contentType="text/html; charset=GB18030" pageEncoding="GB18030"%&gt; boolean isMultipart = ...

Global site tag (gtag.js) - Google Analytics