xmlns:aop="http://www.springframework.org/schema/aop"
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
2016-08-08
@ Dropt 自己眼瞎 没看到是高级吗? 没有servlet基础 什么是在执行前调用 执行后又调用什么? 这个跟过滤器差不多的意思? 这都听不懂 在这逼什么 你要老师给你再讲清楚 自己花钱找老师去啊
2016-08-08
已采纳回答 / qq_素食主义者_03960823
代理方式:一共两种,一种是接口的代理,一种是targetClass
@Resource(name = "injectionServiceImpl")
private InjectionService service;
// public TestInjection() {
// super("classpath:spring-beanannotation.xml");
// }
@Test
public void testAutowired() {
service.save("This is autowired.");
}
用这种方法,好像更加简洁,连构造函数都不用了
private InjectionService service;
// public TestInjection() {
// super("classpath:spring-beanannotation.xml");
// }
@Test
public void testAutowired() {
service.save("This is autowired.");
}
用这种方法,好像更加简洁,连构造函数都不用了
2016-08-06
听不懂就照着视频把代码敲一遍呗。
我是回去学习了JUnit再来看的,差不多能看懂。
SpringFramework不知道要导入哪些包,就全都导进去。还要导入一个commons-logging-1.2.jar。
XML不知道怎么写,百度找了一个教程,复制过来。不知道放哪就随便放放,运行程序,错了就换个位置。
我是回去学习了JUnit再来看的,差不多能看懂。
SpringFramework不知道要导入哪些包,就全都导进去。还要导入一个commons-logging-1.2.jar。
XML不知道怎么写,百度找了一个教程,复制过来。不知道放哪就随便放放,运行程序,错了就换个位置。
2016-08-05
ApplicationContext context = new ClassPathXmlApplicationContext("spring-config.xml");
Resource resource = (Resource) context.getBean("resource");
try {
resource.resource();
} catch (IOException e) {
e.printStackTrace();
}
Resource resource = (Resource) context.getBean("resource");
try {
resource.resource();
} catch (IOException e) {
e.printStackTrace();
}
2016-08-05
讲师回答 / moocer
最初是用来做Bean管理和实现AOP功能的(即SpringFramework),现在spring技术栈很大,除了Framework之外,还有Data、Cloud、Boot、Security等等很多
2016-08-05