摘要:
参考书籍《spring in action》 1. AOP before you wak the walk, you have to learn to walk the walk. 1) advice the job of an aspect (what and when) /before /aft 阅读全文
摘要:
1.装配进阶 1)environment-specific bean @profile 2)conditioinal beans @Conditional 3)ambiguity in autowiring autowiring works when exactly one bean matches 阅读全文
摘要:
参考书籍《spring in action》 1.装载bean 依赖注入的本质是装配(wiring),指的是创建应用对象之间协作关系的行为。 装配方式: 1)传统:XML should not be first choice 核心框架的10个命名空间: <aop> <beans> <context> 阅读全文
摘要:
编写程序的过程中,我们除了实现功能外,也要保证其健壮性。其中之一就是包括对异常的处理。Java将非正常的情况分为Exception and error。其中error错误无法修复也不可捕获。异常机制已经成为判断一门编程语言是否成熟的标准。那么我们在写程序的过程中也需要写好对异常的处理机制。比如写入日 阅读全文