org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'articleTypeService' is defined
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:510)
at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1056)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:274)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:190)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1045)
at JUnit.test.ArticleInforServiceTest.testgetSubTypeid(ArticleInforServiceTest.java:81)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
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.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
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)/**
 * 
 */
package com.studysystem.service.article.imp;import java.util.List;import javax.annotation.Resource;import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;import com.studysystem.dao.DAOInterface;
import com.studysystem.model.article.ArticleType;
import com.studysystem.service.BaseService;
import com.studysystem.service.article.IArticleTypeService;/**
 * @author zouqianheng
 *2012-3-10
 *TODO
 */
@Service @Transactional
public class ArtcileTypeService extends BaseService<ArticleType> implements IArticleTypeService{
    @Resource(name="articleTypeDAO")
private DAOInterface<ArticleType> articleTypeDAO;

public ArtcileTypeService(){}
public List<Integer> getSubTypeid(Integer[] parentids) {
if(parentids !=null && parentids.length>0){
String sql;
StringBuffer hql=new StringBuffer();
for(int i=0;i<parentids.length;i++){
hql.append('?').append(i+1).append(',');
}
hql.deleteCharAt(hql.length()-1);
sql="select o.typeid from ArticleType o where o.parent.typeid in("+ hql.toString()+ ")";
return this.articleTypeDAO.getSubTypeid(sql,parentids);
}
return null;
}
@Override
protected DAOInterface<ArticleType> getDAO() {
// TODO Auto-generated method stub
return articleTypeDAO;
}
public DAOInterface<ArticleType> getArticleTypeDAO() {
return articleTypeDAO;
}
已经了注入bean但是还是找不到原因。
@Autowired
protected IArticleTypeService articleTypeService;
@Resource(name="articleTypeService")
protected IArticleStyleService articleStyleService;
@Autowired
    protected IBrandService brandService;
@Autowired
protected IRoleManageService roleManageService;
@Autowired
protected IActionManageService actionManageService;
@Autowired