一吻氧、@PropertySource
1玄柠、定義
自定義配置文件名稱休涤,多用于配置文件與實體屬性映射咱圆。
2、使用
上一章節(jié)我們介紹了如何從配置文件里獲取值,與JavaBean做映射序苏。但是存在的問題是我們是從主配置(application.yml)里讀取的手幢。如果全部的配置都寫到application里,那就亂套了杠览。所以我們可以按照不同模塊自定義不同的配置文件弯菊。
2.1、配置
person.properties
person.lastName=李四
person.age=25
person.birth=2017/12/15
person.boss=true
person.maps.key1=value1
person.maps.key2=value2
person.lists=a,b,c
person.dog.name=dog
person.dog.age=2
2.2踱阿、JavaBean
@PropertySource(value = {"classpath:person.properties"})
@ConfigurationProperties(prefix = "person")
@Component
public class Person {
private String lastName;
private Integer age;
private boolean isBoss;
private Date birth;
private Map<String, Object> maps;
private List<Object> lists;
private Dog dog;
...setter/getter/toString...
}
這樣一個注解(@PropertySource(value = {"classpath:person.properties"})
)就可以搞定不在主配置里讀取,按照不同的功能模塊劃分出不同的配置文件钦铁。
二软舌、@ImportResource
1、定義
將外部的配置文件加載到程序中來牛曹,比如我們定義一個beans.xml
文件佛点,里面配置了一個bean,默認(rèn)情況下這個bean是不會加載到Spring容器中來的黎比。我們需要@ImportResource注解將這個配置文件加載進(jìn)來超营。
2、使用
2.1阅虫、配置
beans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="helloService" class="com.chentongwei.springboot.service.HelloService"></bean>
</beans>
2.2演闭、JavaBean
public class HelloService {}
2.3、測試類
@RunWith(SpringRunner.class)
@SpringBootTest
public class Springboot02ConfigApplicationTests {
@Autowired
private ApplicationContext ioc;
@Test
public void testHelloService() {
boolean helloService = ioc.containsBean("helloService");
System.out.println(helloService);
}
}
2.4颓帝、測試結(jié)果
false
2.5米碰、修改運(yùn)行類
@SpringBootApplication
@ImportResource(locations = {"classpath:beans.xml"})
public class Springboot02ConfigApplication {
public static void main(String[] args) {
SpringApplication.run(Springboot02ConfigApplication.class, args);
}
}
2.6、測試結(jié)果
true
PS:因為我們將外部的配置文件引入了购城,@ImportResource(locations = {"classpath:beans.xml"})
2.7吕座、注意
@ImportResource這么看的話沒卵用,因為我們現(xiàn)在都沒了配置文件了瘪板,所以引入什么呢吴趴?其實并不然,比如:dubbo還是需要靠配置文件來配置bean的侮攀,這時候就需要此注解了锣枝。(我知道dubbo也可以按照注解來配置,我只是舉個例子魏身。)惊橱,若只為了注入一個bean,完全可以采取Spring的@Bean注解箭昵。
三税朴、廣告
QQ群【Java初學(xué)者學(xué)習(xí)交流群】:458430385
微信公眾號【Java碼農(nóng)社區(qū)】
- 今日頭條號:編程界的小學(xué)生