Spring 依赖注入空指针

saveUserAction.javapackagecom.OmeetingS.action.user;importcom.OmeetingS.bean.User;imp... saveUserAction.java
package com.OmeetingS.action.user;

import com.OmeetingS.bean.User;
import com.OmeetingS.service.UserService;
import com.OmeetingS.service.impl.UserServiceImpl;
import com.opensymphony.xwork2.ActionSupport;
import javax.persistence.Entity;
import javax.persistence.ManyToOne;

public class saveUserAction extends ActionSupport
{
private User user;
private UserService service;

public User getUser()
{
return user;
}

public void setUser(User user)
{
this.user = user;
}

public UserService getService()
{
return service;
}

public void setService(UserService service)
{
this.service = service;
}

@Override
public String execute() throws Exception
{
this.service.save(this.user);

return SUCCESS;
}

}
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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://localhost:3306/Omeetingdb"></property>
<property name="username" value="root"></property>
<property name="password" value="399113"></property>
<property name="maxActive" value="100"></property>
<property name="maxIdle" value="30"></property>
<property name="maxWait" value="500"></property>
<property name="defaultAutoCommit" value="true"></property>
</bean>

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>com/OmeetingS/bean/User.hbm.xml</value>
</list>
</property>
</bean>

<bean id="userDao" class="com.OmeetingS.dao.impl.UserDAOImpl" scope="singleton">
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>

<bean id="userService" class="com.OmeetingS.service.impl.UserServiceImpl">
<property name="userDao" ref="userDao"></property>
</bean>

<bean id="saveUserAction" class="com.OmeetingS.action.user.saveUserAction" scope="prototype">
<property name="service" ref="userService"></property>
</bean>

</beans>

错误已经找出是service这个变量为null,可是这个依赖注入没发现任何问题,很奇怪
展开
 我来答
longturong
2011-09-18 · TA获得超过2083个赞
知道小有建树答主
回答量:153
采纳率:0%
帮助的人:164万
展开全部
struts.xml中SaveUserAction的class属性有没有对应好Spring配置文件中id="saveUserAction"的Action,即<action name="saveUserAction' class="saveUserAction"/>.......
bjsfdx2004
2011-09-18 · 超过22用户采纳过TA的回答
知道答主
回答量:45
采纳率:0%
帮助的人:67.6万
展开全部
估计是你的Struts.xml没有配置对,不应该是
<action name="saveUserAction' class="权限定类名"/>
应该是:
<action name="saveUserAction' class="spring中bean的名称"/>
如果还不行,再说。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式