在学习的小伙伴注意一下,虽说是入门篇,但是如果你是初学者,那么请绕道,这个入门篇只对有spring基础的小伙伴才能看得懂,而且有基础的谁也没事不会看这个,因为很鸡肋,没基础只能去看书了
2017-04-17
id="moocPiontcut"/>
老师的pointcut拼错了……自己写了一遍一直报错……
老师的pointcut拼错了……自己写了一遍一直报错……
2017-04-17
如果是prototype 模式,在setApplicationContext方法中实例化bean会报错,
org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'moocBeanName': Requested bean is currently in creation: Is there an unresolvable circular reference?
org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'moocBeanName': Requested bean is currently in creation: Is there an unresolvable circular reference?
2017-04-15
在类实例化的才会去执行aware接口中的方法,当bean为单例模式时容器一启动就会实例化bean就会执行aware接口方法,如果为prototype模式,手动调用bean的生成才会去调用aware接口中的方法。
2017-04-15
<div class="pl-list-nick'><a href="/u/2791566/courses" target="_blank">spring</a></div>
2017-04-15
<bean id="oneinterface" class="interfaces.OneinterfaceImpl"></bean>
这句话的意思其实就是等于Oneinterface oneinterface = new OneinterfaceImpl();
怎么拿到这个对象,需要在java类中加载这个配置文件:
ApplicationContext context=new ClassPathXmlApplicationContext("xxxx.xml");
加载完成之后,使用context的getBean方法得到对象
context.getBean("oneinterface");
这句话的意思其实就是等于Oneinterface oneinterface = new OneinterfaceImpl();
怎么拿到这个对象,需要在java类中加载这个配置文件:
ApplicationContext context=new ClassPathXmlApplicationContext("xxxx.xml");
加载完成之后,使用context的getBean方法得到对象
context.getBean("oneinterface");
2017-04-14
老师的声音断断续续 忽高忽低的 而且大部分时间是在念理论 实际操作的时候也很杂乱 这不是免不免费给视频看的问题 是看了这么多老师的讲解 就他的听着难受。听不懂。
2017-04-13