springboot中xml配置之@ImportResource

Posted xtuxiongda

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot中xml配置之@ImportResource相关的知识,希望对你有一定的参考价值。

springboot中进行相关的配置往往有java配置和xml配置两种方式。

使用java的方式配置只需要使用@configuration注解即可,而使用xml的方式配置的话需要使用@ImportResource来加载配置文件

 

不过多描述,直接以一个很简单的通过xml配置注入bean的例子来展示@ImportResource注解的使用

 

xml配置放在resources目录下

<?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="hello" class="com.example.yang.bean.Hello"/>
 

</beans>

新增一个配置类,导入xml配置

@ImportResource("classpath:beans.xml")
@Configuration
public class BeansConfig 
    

然后在使用的时候直接注入即可

@RestController
public class TestController 
    
    @Autowired
    private Hello hello;
    
    
    @RequestMapping("/hello")
    public String say() 
        return hello.say("小明");
    

 

以上是关于springboot中xml配置之@ImportResource的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot之ServletFilterListener配置

SpringBoot整合MyBatis之xml配置

springboot使用之三:springboot使用logback日志

SpringBoot初始教程之ServletFilterListener配置

SpringBoot初始教程之ServletFilterListener配置

SpringBoot初始教程之ServletFilterListener配置