感觉太难了 完全听不懂 这个老师讲的是进阶的 不适合新手 视频听了好几遍了 发现不懂 可能每个老师的讲课对应的学生不一样吧 这个完全听天书
2017-10-17
表示用了spring boot 配置文件再也不麻烦了 腰不酸了 腿不麻了 干啥都有劲
最新回答 / 亡语i
看错误信息应该是你的配置文件xml中第一行格式不正确?
http://spring.io/
http://projects.spring.io/spring-framework/
http://projects.spring.io/spring-framework/
2017-10-15
5:04 注意这里的super,老师用的是spring-beanannotation.xml
spring-beanannotation.xml里是这样的配置的:
<context:component-scan base-package="com.imooc.beanannotation"></context:component-scan>
spring-beanannotation.xml里是这样的配置的:
<context:component-scan base-package="com.imooc.beanannotation"></context:component-scan>
2017-10-15
applicationContext.xml可以通过@BeforeClass修饰的方法里读取,这样只读一次配置文件。
2017-10-14
最新回答 / qq_凡曦_03855849
//定义javaBeanimport org.springframework.context.annotation.Scope;import org.springframework.stereotype.Component;@Component@Scope("prototype")public class Person { private int id; private String name; public int getId() { return id; } public void setId(i...
2017-10-14