摘要:
Spring4之后,使用注解开发,必需aop包 导入context约束,增加注解支持 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi 阅读全文
摘要:
Bean作用域(Bean Scope) singleton【单例模式】【默认】:全局唯一 <!--显式设置单例模式--> <bean id="accountService" class="com.something.DefaultAccountService" scope="singleton"/> 阅读全文