spring注入类型不匹配?:org.springframework.beans.factory.BeanCreationException

pasalo 2012-06-22 05:47:39
----------------------------------------Service---------------------------------------------
@Service("innerUserServiceImpl")
public class InnerUserServiceImpl implements InnerUserService {
/* 增加一个新用户
* 判断用户名在inner_user表中用户名是否存在
* 如果成功则返回true,否则返回false
*/

private InnerUserDaoImpl innerUserDaoImpl;

public InnerUserDaoImpl getInnerUserDaoImpl() {
return innerUserDaoImpl;
}
@Resource
public void setInnerUserDaoImpl(InnerUserDaoImpl innerUserDaoImpl) {
this.innerUserDaoImpl = innerUserDaoImpl;
}


@Override
public boolean addNewInnerUser(InnerUser innerUser) {

int count=0;
System.out.println(innerUserDaoImpl);
count=innerUserDaoImpl.getCountByUserName(innerUser.getUsername());
if(count==0)
return false;
else {
//增加一个用户
innerUserDaoImpl.addNerInnerUser(innerUser);
return true;
}
}


/* (non-Javadoc)
* @see com.postek.dsmis.inner.service.InnerUserService#deleteInnerUser(int)
*/
@Override
public void deleteInnerUser(int id) {
// TODO Auto-generated method stub

}

/* (non-Javadoc)
* @see com.postek.dsmis.inner.service.InnerUserService#dropInnerUser(int)
*/
@Override
public void dropInnerUser(int id) {
// TODO Auto-generated method stub

}

/* (non-Javadoc)
* @see com.postek.dsmis.inner.service.InnerUserService#updateIInnerUserLoginInfo(com.postek.dsmis.model.InnerUser)
*/
@Override
public void updateIInnerUserLoginInfo(InnerUser innerUser) {
// TODO Auto-generated method stub

}

}

------------------------------------test------------------------------------
package com.postek.dsmis.inner.serviceImpl;

import java.security.NoSuchAlgorithmException;

import javax.annotation.Resource;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import com.postek.dsmis.common.util.EncryptionMD5;
import com.postek.dsmis.model.InnerUser;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class TestSpring extends AbstractTransactionalJUnit4SpringContextTests {

private InnerUserServiceImpl iusi ;

public InnerUserServiceImpl getIusi() {
return iusi;
}
@Resource(name="innerUserServiceImpl")
public void setIusi(InnerUserServiceImpl iusi) {
this.iusi = iusi;
}

@Test
public void addNewUser() throws NoSuchAlgorithmException {

InnerUser innerUser = new InnerUser();
innerUser.setDepartmentId("1");
innerUser.setDepartmentName("信息");
innerUser.setLastloginAdrees(null);
innerUser.setLastLoginIp(null);
innerUser.setLastloginTime(null);
innerUser.setName("系统管理员");
innerUser.setUsername("admin");
innerUser.setPassword(new EncryptionMD5().getModifyMD5("admin"));
innerUser.setPosition("信息工程师");
innerUser.setTel("13333333333");
innerUser.setUseable("1");
System.out.println(iusi);
//System.out.println(getInnerUserServiceImpl());
iusi.addNewInnerUser(innerUser);
}

}

---------------------------------------------------------------------------------







org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.postek.dsmis.inner.action.TestSpring': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'innerUserServiceImpl' must be of type [com.postek.dsmis.inner.serviceImpl.InnerUserServiceImpl], but was actually of type [$Proxy22]
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessPropertyValues(CommonAnnotationBeanPostProcessor.java:300)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1074)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireBeanProperties(AbstractAutowireCapableBeanFactory.java:374)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:110)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:321)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:220)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:301)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:303)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:240)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:180)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'innerUserServiceImpl' must be of type [com.postek.dsmis.inner.serviceImpl.InnerUserServiceImpl], but was actually of type [$Proxy22]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:349)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:435)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:409)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:541)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:156)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:84)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessPropertyValues(CommonAnnotationBeanPostProcessor.java:297)
... 26 more

...全文
1517 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
pasalo 2012-06-23
  • 打赏
  • 举报
回复
找到错误了,应该是定义接口,注入其实现类。
pasalo 2012-06-22
  • 打赏
  • 举报
回复
引用innerUserServiceImpl,只是一个测试类而已
pasalo 2012-06-22
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 的回复:]

Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'innerUserServiceImpl' must be of type [com.postek.dsmis.in……
[/Quote]


package com.postek.dsmis.inner.serviceImpl;

import java.security.NoSuchAlgorithmException;

import javax.annotation.Resource;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;
import org.springframework.orm.hibernate3.HibernateTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import com.postek.dsmis.common.util.EncryptionMD5;
import com.postek.dsmis.common.util.hibernate.GenericHibernateDao;
import com.postek.dsmis.inner.daoImpl.InnerUserDaoImpl;
import com.postek.dsmis.model.InnerUser;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class TestSpring extends AbstractJUnit4SpringContextTests{
private InnerUserServiceImpl innerUserServiceImpl;

public InnerUserServiceImpl getInnerUserServiceImpl() {
return innerUserServiceImpl;
}
@Resource(name="innerUserServiceImpl")
public void setInnerUserServiceImpl(InnerUserServiceImpl innerUserServiceImpl) {
this.innerUserServiceImpl = innerUserServiceImpl;
}



@Test
public void ftaddNewUser() throws NoSuchAlgorithmException {
//ApplicationContext cx=new ClassPathXmlApplicationContext("applicationContext.xml");
//HibernateTemplate ht=(HibernateTemplate) cx.getBean("hibernateTemplate");
// GenericHibernateDao genericHibernateDao=(GenericHibernateDao) cx.getBean("genericHibernateDao");
//System.out.println(ht);
//System.out.println(genericHibernateDao);
// InnerUserServiceImpl impl=new InnerUserServiceImpl() ;
InnerUser innerUser = new InnerUser();
innerUser.setDepartmentId("1");
innerUser.setDepartmentName("信息");
innerUser.setLastloginAdrees(null);
innerUser.setLastLoginIp(null);
innerUser.setLastloginTime(null);
innerUser.setName("系统管理员");
innerUser.setUsername("admin");
innerUser.setPassword(new EncryptionMD5().getModifyMD5("admin"));
innerUser.setPosition("信息工程师");
innerUser.setTel("13333333333");
innerUser.setUseable("1");
innerUserServiceImpl.addNewInnerUser(innerUser);
}

}
成一粒 2012-06-22
  • 打赏
  • 举报
回复
Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'innerUserServiceImpl' must be of type [com.postek.dsmis.inner.serviceImpl.InnerUserServiceImpl], but was actually of type [$Proxy22]
innerUserServiceImpl检查引用这个bean的类型看看
​ 博主介绍:✌在职Java研发工程师、专注于程序设计、源码分享、技术交流、专注于Java技术领域和毕业设计✌项目名称基于Web的酒店客房管理系统的设计与实现系统说明3.2.1  用户模块功能分析前台模块应主要包括用户登录模块、用户注册模块、查看客房信息模块、客房预定 模块、用户留言模块、充值模块和个人信息维护模块。用户登录模块:用户通过输入注册的的账号和密码,然后进行身份验证,匹配成功 后实现登录功能。用户注册模块:用户输入合法的账号和密码可以实现注册功能。 查看客房信息模块:用户可以通过首页查看客房的价格,图片,详情等信息,从而   可以选择想要预定的房间。 客房预定模块:用户选择自己想要预定的客房后,可以通过输入相关信息进行订房操作。用户留言模块:用户可以向管理员发送留言。 充值模块:用户可以通过添加银行卡再为自己进行充值操作。 个人信息维护模块:用户可以修改自己的姓名、密码、身份证号等信息,还可以查看自己的订单。3.2.2  管理员模块功能分析对于管理员而言,一个好的管理系统总是能让酒店的管理工作事半功倍[7]。管理员 能够通过这个系统对自己的酒店情况一目了然,应该包括客户留言模块、客房管理模 块、订房信息管理模块、入住信息管理模块、统计分析模块、酒店新闻管理模块、会 员信息管理模块、员工信息管理模块、系统用户管理模块、个人信息维护模块。客户留言模块:管理员可以查看并回复用户的留言。客房管理模块:管理员可以管理客房信息,可以添加新的客房,删除已经停用的客房信息,还可以修改现有的客房信息。订房信息管理模块:管理员可以处理用户的订房请求,为用户办理入住手续。入住信息管理模块:对于没有注册的线下客户,也可以办理入住手续。统计分析模块:可以对酒店所有的入住信息进行记录和总结分析。酒店新闻管理模块:管理员可以更新网站上的新闻公告,展示图片等信息。会员信息管理模块:管理员可以查看到所有的注册会员信息,可以对会员信息进行删除,修改,添加操作。员工信息管理模块:管理员可以查看到自己公司所有的员工信息,而且还可以对员工的相关信息进行管理。系统用户管理模块:管理员可以查看到所有的系统管理员信息并对管理员信息进行管理。个人信息维护模块:管理员可以更改自己的登录密码或者是姓名、性别、手机号等 相关个人信息。​编辑 环境需要1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 5.数据库:MySql 5.7版本;6.是否Maven项目:否;技术栈1. 后端:Spring+SpringMVC+Mybatis2. 前端:JSP+CSS+JavaScript+jQuery使用说明1. 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件;2. 使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven;若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行;3. 将项目中springmvc-servlet.xml配置文件中的数据库配置改为自己的配置;4. 运行项目,在浏览器中输入http://localhost:8080/ 登录运行截图​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑​编辑 用户管理控制层:package com.houserss.controller;import javax.servlet.http.HttpSession;import org.apache.commons.lang3.StringUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.ResponseBody;import com.houserss.common.Const;import com.houserss.common.Const.Role;import com.houserss.common.ServerResponse;import com.houserss.pojo.User;import com.houserss.service.IUserService;import com.houserss.service.impl.UserServiceImpl;import com.houserss.util.MD5Util;import com.houserss.util.TimeUtils;import com.houserss.vo.DeleteHouseVo;import com.houserss.vo.PageInfoVo;/** * Created by admin */@Controller@RequestMapping(/user/)public class UserController if (ip != null && ip.length() > 0) String[] ips = ip.split(,);for (int i = 0; i  

81,092

社区成员

发帖
与我相关
我的任务
社区描述
Java Web 开发
社区管理员
  • Web 开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧