`
云_不忘初心
  • 浏览: 4711 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

at com.opensymphony.xwork2.spring.SpringObjectFactory.getClassInstance...

 
阅读更多

Caused by: java.lang.NullPointerException  at com.opensymphony.xwork2.spring.SpringObjectFactory.getClassInstance(SpringObjectFactory.java:209)

 

 

大致是不能得到struts2的action管理对象,使用三大框架继承时,使用struts2-spring-plugin-2.2.1.jar这个插件时,spring ioc容器会代为管理struts2的action对象  原因:

  1, 没用使用到这个包 

  2,使用这个包后没有在web.xml中配置  需加上监听 

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>

3,其他包冲突  博主就是因为 包冲突  org.springframework.web.context开头的包有两个,删掉小的就好了

 

补充,  如何删掉myEclipse中的包,方法:先删掉引用(包名后带路径)  ,然后在删除包  不然会报错

 

分享到:
评论

相关推荐

    com.opensymphony.xwork2.DefaultActionProxy

    com.opensymphony.xwork2.DefaultActionProxy com.opensymphony.xwork2.DefaultActionInvocation org.apache.struts2.dispatcher.FilterDispatcher

    OpenSymphony公司的xwork资源包

    在XWork中,每个动作都是一个Java类,该类通常继承自`com.opensymphony.xwork2.ActionSupport`基类。开发者可以在这个类中定义处理用户请求的方法,并在XML配置文件中指定这些方法与URL请求的对应关系。这样,当用户...

    struts-2.1.6.chm

    com.opensymphony.xwork2 Main XWork ...com.opensymphony.xwork2.spring.interceptor Spring specific interceptor classes. com.opensymphony.xwork2.test com.opensymphony.xwork2.util XWork util classes. ...

    struts 2.3.4.1 最新英文版API

    struts 2.3.4.1 最新英文版API ...com.opensymphony.xwork2.spring.interceptor Spring specific interceptor classes. com.opensymphony.xwork2.test com.opensymphony.xwork2.util XWork util classes. ...

    xwork-core-2.3.37.jar

    用于解决struts2升级至2.3.37时 出现java.lang.NoSuchMethodError: com.opensymphony.xwork2.ActionContext.put(Ljava/lang/异常时,更换的xwork-core-2.3.37.jar

    xwork-2.1.5-all.rar_xwork_xwork-2.1.5_xwork-2.1.5.jar_xwork-core

    XWork与Struts2紧密相关,Struts2是基于XWork构建的一个MVC框架,它在XWork的基础上增加了视图层的支持,提供了更全面的Web应用解决方案。 8. **应用场景**: XWork常用于企业级的Web应用开发,尤其适合那些需要...

    struts2-core-2.1.8.1 xwork-core-2.1.6源码

    `com.opensymphony.xwork2.exception`包下包含了各种异常类,而`com.opensymphony.xwork2.util.reflection`包则提供了反射相关的异常处理。 8. **国际化与本地化(I18N & L10N)**:Struts2支持多语言环境,通过`...

    stuts2.2_API文档

    com.opensymphony.xwork2.XWorkException (implements com.opensymphony.xwork2.util.location.Locatable) org.apache.struts2.StrutsException (implements com.opensymphony.xwork2.util.location.Locatable)

    升级struts2.3.32 需要的jar:asm-3.3.jar,asm-commons-3.3,asm-tree-3.3.jar

    不然有以下报错java.lang.NoClassDefFoundError: com/opensymphony/xwork2/util/finder/ClassFinder$InfoBuildingVisitor,导入asm-3.3.jar,asm-commons-3.3,asm-tree-3.3.jar即可,压缩包里面有

    struts2下的Xwork2源文件

    struts2下的Xwork2源文件 在 opensymphony开源社区http://www.opensymphony.com/ 可匿名使用SVN checkout xwork2的源代码 http://svn.opensymphony.com/svn/xwork/trunk

    struts2中xwork源码

    `com.opensymphony.xwork2.DefaultActionProxy`和`com.opensymphony.xwork2.DefaultResult`是处理结果的关键类。 7. **配置管理**:`com.opensymphony.xwork2.config`包下的类处理Struts2的配置信息,包括Action的...

    xwork-2.1.6.rar

    `com.opensymphony.xwork2.config.ConfigurationManager`和`com.opensymphony.xwork2.config.Configuration`类负责加载和解析配置。 7. **异常处理** XWork提供了优雅的异常处理机制,当Action执行过程中出现错误...

    xwork-2.0.4-src

    4. **com.opensymphony.xwork2.spring**:如果项目集成了Spring框架,这个包提供了与Spring的整合,允许在Spring容器中管理Action和Interceptor。 5. **com.opensymphony.xwork2.validator**:验证框架,提供了一套...

    java 请求的方法不存在(NoSuchMethodException)

    2. **反射操作**:在使用Java反射API(如`Class.getMethod()`或`Class.getDeclaredMethod()`)时,如果没有找到指定的方法,也会抛出此异常。 3. **动态代理**:在使用Java动态代理生成的代理类中,如果尝试调用的...

    xwork-2.0.5-src

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

    xwork-2.0.4源码

    在xwork-2.0.4中,`com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler`和`com.opensymphony.xwork2.util.reflection.ReflectionProvider`类共同协作,实现了对象的实例化和属性设置,使得Action的...

    xwork-2.1.1

    1. **动作调度(Action Dispatching)**:XWork通过`com.opensymphony.xwork2.DefaultActionProxy`类来创建并执行Action。它根据配置文件(如struts.xml)中的映射规则,找到对应的动作类并调用其执行方法。 2. **...

    struts2.3.24升级2.5.26.zip

    Struts2是一个非常流行的Java Web框架,用于构建和维护可扩展、高效且易于管理的企业级应用程序。从2.3.24版本升级到2.5.26版本,这是一个重要的更新,涉及到许多改进、安全修复以及对新特性的支持。在进行这样的...

    struts2 依赖核心包 --xwork 源文件

    XWork是Struts2的核心组件,它负责处理Action的业务逻辑和控制流程。在深入理解Struts2与XWork的关系之前,我们首先需要了解这两个概念的基础知识。 Struts2框架是在原有的Struts1的基础上进行改进和升级的,它克服...

    struts2.1.6src

    通过`com.opensymphony.xwork2.util.reflection`和`com.opensymphony.xwork2.injection`包,你可以了解到对象的创建、依赖注入以及AOP(面向切面编程)的实现。 10. **测试支持**: `test`目录下的代码展示了单元...

Global site tag (gtag.js) - Google Analytics