ssh2整合 spring 注入对象为空

问题描述

在tomact服务启动之后我在Action里对象set方法 打印出对象 证明是注入进去的 ,, 当我调用Action里面对象的时候 就提示我空指针异常 如果使用getBean 的话是可以得到对象的web.xml <context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value></context-param><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><!-- OpenSessionInView的处理 --><filter><filter-name>openSessionInView</filter-name><filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class><init-param> <param-name>sessionFactoryBeanName</param-name> <param-value>sessionFactorydao</param-value> </init-param> </filter><filter-mapping><filter-name>openSessionInView</filter-name><url-pattern>/*</url-pattern></filter-mapping><filter><filter-name>struts2</filter-name><filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class></filter><filter-mapping><filter-name>struts2</filter-name><url-pattern>*.action</url-pattern></filter-mapping><welcome-file-list><welcome-file>index.jsp</welcome-file></welcome-file-list></web-app>applicationContext.xml <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="${jdbc.driver}"></property><property name="url" value="${jdbc.url}"></property><property name="username" value="${jdbc.username}"></property><property name="password" value="${jdbc.pwd}"></property><property name="maxIdle" value="${jdbc.maxIdleTime}"></property><property name="maxActive" value="${jdbc.maxPoolSize}"></property> </bean> <bean id="sessionFactorydao" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="mappingDirectoryLocations"> <list> <value>classpath:/entity/</value></list> </property><property name="hibernateProperties"> <value> hibernate.dialect=org.hibernate.dialect.SQLServerDialect<!-- hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect -->hibernate.show_sql=true </value></property> </bean> <bean id="p" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list><value>classpath:/jdbc.properties</value></list></property></bean><bean id="txManage" class="org.springframework.orm.hibernate3.HibernateTransactionManager"><property name="sessionFactory" ref="sessionFactorydao" /></bean><tx:advice id="TxtransactionManage" transaction-manager="txManage"><tx:attributes><tx:method name="save*" propagation="REQUIRED" /><tx:method name="delete*" propagation="REQUIRED" /><tx:method name="update*" propagation="REQUIRED" /></tx:attributes></tx:advice><aop:config><aop:pointcut id="userDaosearch" expression="execution( * ouyang.UserService.*.*(..))" /><aop:advisor advice-ref="TxtransactionManage" pointcut-ref="userDaosearch" /></aop:config><bean id="spring" class="util.SpringUtil" /><bean id="UserDao" class="testDAO.UserDao"><property name="sessionFactory" ref="sessionFactorydao" /></bean><bean id="UserService" class="UserService.UserService"><property name="userDao" ref="UserDao" /></bean><bean id="userAction" class="Action.UserAction"><property name="userService" ref="UserService" /></bean> </beans>UserAction package Action;import javax.servlet.http.HttpServletRequest;import org.apache.struts2.ServletActionContext;import org.apache.xbean.spring.context.ClassPathXmlApplicationContext;import org.springframework.context.ApplicationContext;import org.springframework.web.struts.ActionSupport;import testDAO.IUserDao;import UserService.IUserService;import UserService.UserService;public class UserAction extends ActionSupport{IUserService userService;public void setUserService(IUserService userService) {System.out.println("注入进来了");this.userService = userService;}public IUserService getUserService() {return userService;}public String login(){HttpServletRequest request = ServletActionContext.getRequest();String name = request.getParameter("name");String pwd = request.getParameter("pwd");//ApplicationContext app= new ClassPathXmlApplicationContext("applicationContext.xml");//userService =(UserService)app.getBean("UserService");System.out.println(userService==null);if(userService.Login(name, pwd)){request.setAttribute("success", "登陆成功");}else{request.setAttribute("success", "登陆失败");}return "index";}} 问题补充:ethen 写道

解决方案

那就改成 userAction
解决方案二:
引用String name = request.getParameter("name"); String pwd = request.getParameter("pwd"); 这样能获取到值吗?如果是使用struts2的话,建议采用属性 getter setter的方式来获取参数值。多加点输出日志进行调试吧。这个不是什么大问题。
解决方案三:
没看见 struts.xmlstruts里头action里配置的是 class = "userAction" 还是 class="Action.UserAction"?struts2-spring-plugin.jar 加进去了没?
解决方案四:
把错误信息贴出来看看吧

时间: 2024-09-25 00:19:00

ssh2整合 spring 注入对象为空的相关文章

JSP 获取Spring 注入对象示例

 这篇文章主要介绍了JSP如何获取Spring 注入对象,实现代码如下,需要的朋友不要错过       <%@ page import="org.springframework.web.context.support.WebApplicationContextUtils"%> <%@ page import="org.springframework.context.ApplicationContext"%> ServletContext sc

JSP 获取Spring 注入对象示例_JSP编程

<%@ page import="org.springframework.web.context.support.WebApplicationContextUtils"%> <%@ page import="org.springframework.context.ApplicationContext"%> ServletContext sc = this.getServletConfig().getServletContext(); Appl

spring 注入对象丢失

问题描述 前端使用flex通过blazeds-spring访问后端java,java一直使用spring来管理各个对象,使用setter和getter注入对象,但不知道怎么回事情,服务器刚启动时没什么问题,但只要过一段时间,采用spring注入的对象全都丢失了,所有对象都等于null,请高手们帮忙看看是什么原因造成的,在此感谢各位. 解决方案 解决方案二:该回复于2011-04-15 10:29:40被版主删除解决方案三:spring的监听器起动了?解决方案四:spring监听器起动没有.解决方

SSH整合环境,spring初始化对象为空

问题描述 我的情况是这样的...启动tomcat服务器....后台没输出什么解析spring配置文件的信息..applicationConfiguration的配置如下.<?xmlversion="1.0"encoding="UTF-8"?><!DOCTYPEbeansPUBLIC"-//SPRING//DTDBEAN2.0//EN""http://www.springframework.org/dtd/spring-

如何解决xfire发布的Webservice中Spring注入为空的问题

Spring框架使用中注入为空是一个比较头疼的问题,遇到Webservice和Spring框架配合时,这个问题更容易出现并很难发现问题的原因. 在做SSO系统中就遇到这样的问题,在Service的实现类中注入Ibatis数据库操作的Mapper一直为空,最终发现原因是xfire和Spring配合使用时和普通使用xfire的配置方式不同 xfire可以快速发布Webservice,通常情况下,只需要下边几个步骤. 1. 创建Service接口和实现类 例如SSOMethodsServices和SS

Ehcache 整合Spring 使用页面、对象缓存(转)

Ehcache在很多项目中都出现过,用法也比较简单.一般的加些配置就可以了,而且Ehcache可以对页面.对象.数据进行缓存,同时支持集群/分布式缓存.如果整合Spring.Hibernate也非常的简单,Spring对Ehcache的支持也非常好.EHCache支持内存和磁盘的缓存,支持LRU.LFU和FIFO多种淘汰算法,支持分布式的Cache,可以作为Hibernate的缓存插件.同时它也能提供基于Filter的Cache,该Filter可以缓存响应的内容并采用Gzip压缩提高响应速度.

Ehcache 整合Spring 使用页面、对象缓存

Ehcache在很多项目中都出现过,用法也比较简单.一般的加些配置就可以了,而且Ehcache可以对页面.对象. 数据进行缓存,同时支持集群/分布式缓存.如果整合Spring.Hibernate也非常的简单,Spring对Ehcache的支持也非常好. EHCache支持内存和磁盘的缓存,支持LRU.LFU和FIFO多种淘汰算法,支持分布式的Cache,可以作为Hibernate的缓存插件.同时 它也能提供基于Filter的Cache,该Filter可以缓存响应的内容并采用Gzip压缩提高响应速

spring注入-spring 注入时 子类父类注入 后子类属性为空

问题描述 spring 注入时 子类父类注入 后子类属性为空 有这样的结构设计类: 父类: package com.company.name.parent; public class CustomerInfoBO{ private XXXDao xXXDao; //xXXDao setter,getter } 子类: package com.company.name.children; public class CustomerInfoBO extends com.company.name.pa

Mybatis整合Spring

 Mybatis整合SpringintegrationMapperScannerConfigurer  Mybatis整合Spring 根据官方的说法,在ibatis3,也就是Mybatis3问世之前,Spring3的开发工作就已经完成了,所以Spring3中还是没有对Mybatis3的支持.因此由Mybatis社区自己开发了一个Mybatis-Spring用来满足Mybatis用户整合Spring的需求.下面就将通过Mybatis-Spring来整合Mybatis跟Spring的用法做一个简单