已采纳回答 / 大飞007
2.以逸待劳方式:装上个spring tool suite插件,或者你在你下载的spring总包里面搜索.xml结尾的,里面有示范头3.class默认路径:简单理解 WEB-INF文件夹下的classes目录或者src下的编译文件,具体搜索一下资料
2017-02-10
已采纳回答 / zeroLO
<context:component-scan base-package="com.imooc.aop.schema"></context:component-scan>@Service这样应该就可以吧
2017-01-22
已采纳回答 / 相信
public void setAutoWiringDAO111(AutoWiringDAO autoWiringDAO111) { System.out.println("setAutoWiringDAO"); this.autoWiringDAO111 = autoWiringDAO111; }
2017-01-18
已采纳回答 / i瞎闹腾i
或者不改版本,添加@Qualifier("name")做限定 @Autowired @Qualifier("stringStore") private Store<String> s1; @Autowired @Qualifier("integerStore") private Store<Integer> s2;
已采纳回答 / 慕姐4116514
继承了就可以使用测试单元工具的初始化加载上下文,和get方法取得对象,以及后面的销毁,,,,,也可以不继承,只要在测试类里加载上下文和销毁就可以。。老师只是为了把测试方法的准备工作和善后工作写在父类中一起,把测试方法写在子类,方便看懂。
2017-01-02
已采纳回答 / 阳光洒在路上就不怕心碎f
我也遇到这个问题了,原因是,使用aop还要添加三个jar包: aopalliance aspectjrt aspectjweaver,在pom中添加如下代码即可,上面的回复中有个包的半杯有问题,使用不了,我的这个亲测可以。 <...code...>
2017-01-02
已采纳回答 / 知音1005
我直接用了老师的代码,之前没有学到Jsr注解时也老是输出JsrServie init.和JsrServie destroy.,我还以为是系统自带的呢,原来是使用了同一个配置文件搞的鬼,base-package="com.imooc.beanannotation"那些java类都在此包下,所有全被注解了
2017-01-01
已采纳回答 / 踏着灰色轨迹
在Junit测试类上使用@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations={"classpath:spring-config.xml"})然后可以使用@Autowired进行自动装配
2016-12-22