摘要:
在代码中需要调试的地方,输入“debugger;”; 阅读全文
摘要:
需要用到的jar包: 1.XML方式实现: beans.xml配置: 2.注解方式: applicationContext.xml配置: 测试类: 阅读全文
摘要:
1.下载①axis2-1.7.4-bin.zip、②axis2-1.7.4-war.zip、③axis2-eclipse-service-plugin-1.7.4.zip、④axis2-eclipse-codegen-plugin-1.7.4.zip(下载地址:http://axis.apache. 阅读全文
摘要:
1.定义别名: 2.扫描包方式: 3.注解方式: 阅读全文
摘要:
1、教程转载==》》:http://blog.csdn.net/wangpeng047/article/details/8556800 2、实例转载==》》:http://blog.csdn.net/wangpeng047/article/details/8560694 阅读全文
摘要:
spring AOP底层原理实现——jdk动态代理 阅读全文
摘要:
一般而言,动态代理分为两种,一种是JDK反射机制提供的代理,另一种是CGLIB代理。在JDK代理,必须提供接口,而CGLIB则不需要提供接口,在Mybatis里两种动态代理技术都已经使用了,在Mybatis中通常在延迟加载的时候才会用到CGLIB动态代理。 1.JDK动态代理: 2.CGLIB动态代 阅读全文
摘要:
http://www.everycoding.com/maven2/org/mybatis/mybatis-spring/1.2.1.html 阅读全文
摘要:
https://github.com/spring-projects/spring-framework/tags 阅读全文
摘要:
1.对象冒充: 2.call()方法: 3.apply()方法: 4.原型链: 5.call()方法与原型链混合: 阅读全文