摘要:
概述: The @PropertySource annotation provides a convenient and declarative mechanism for adding aPropertySource to Spring’s Environment. 案例: 一个propertie 阅读全文
摘要:
@Profile的作用是把一些meta-data进行分类,分成Active和InActive这两种状态,然后你可以选择在active 和在Inactive这两种状态 下配置bean, 在Inactive状态通常的注解有一个!操作符,通常写为:@Profile("!p"),这里的p是Profile的名 阅读全文
摘要:
在xml引入带有@Configuration的Java类,就是把这个带有@Configuration的Java类,当做一个普通的的类用<bean>标签引入: 核心代码如下: 阅读全文
摘要:
概述:@Import注解是引入带有@Configuration的java类。 @ImportResource是引入spring配置文件.xml 案例的核心代码如下: 阅读全文