最赞回答 / 好帮手慕珊
UnitTestBase是自己写的类,代码如下package com.imooc.test.base;import org.junit.After;import org.junit.Before;import org.springframework.beans.BeansException;import org.springframework.context.support.ClassPathXmlApplicationContext;import org.springframework.util.Str...
2015-03-25
已采纳回答 / moocer
有些类似,JavaBean是私有成员及其getter和setter。在spring中,把所有对象都当做“bean”,但此bean非彼bean,spring中的bean可以是任何对象,不仅仅是javabean。
2015-03-20
已采纳回答 / Coda
在使用Spring框架中@Autowired标签时默认情况下使用 @Autowired 注释进行自动注入时,Spring 容器中匹配的候选 Bean 数目必须有且仅有一个。当找不到一个匹配的 Bean 时,Spring 容器将抛出BeanCreationException 异常,并指出必须至少拥有一个匹配的 Bean。Spring 允许我们通过 @Qualifier 注释指定注入 Bean 的名称,这样歧义就消除了,可以通过下面的方法解决异常。@Qualifier("XXX") 中的 XX是 Bean 的...
2015-03-02