码迷,mamicode.com
首页 > 编程语言 > 详细

spring boot @propertySource @importResource @Bean [六]

时间:2020-05-17 21:51:52      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:兼容   classpath   run   nta   sys   png   static   schema   utf-8   

@propertySource

指定property的配置源。

创建一个person.property:

技术图片

然后修改person注解;

技术图片

在运行test之后,结果为:

技术图片

@importResource

这个importResource是用来兼容spring的。

技术图片

HelloService:

package com.axm.demo.service;
public class HelloService {
    public  HelloService(){

    }
}

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.axm.demo.service.HelloService"></bean>
</beans>

然后注入:

@SpringBootApplication
@ImportResource(locations = {"classpath:beans.xml"}) //关键
public class DemoApplication {
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
}

测试:

@Test
void contextLoads() {
    boolean has=ioc.containsBean("helloService");
    System.out.println(has);
}

结果:

技术图片

然后再spring boot 有新的方式去注入服务:

添加一个配置文件:

技术图片

@Configuration
public class MyApplication {
    @Bean
    public HelloService helloService(){
        return  new HelloService();
    }
}

然后就会自动注入这个HelloService 服务。

spring boot @propertySource @importResource @Bean [六]

标签:兼容   classpath   run   nta   sys   png   static   schema   utf-8   

原文地址:https://www.cnblogs.com/aoximin/p/12906912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!