生活随笔
收集整理的這篇文章主要介紹了
@ImportResource
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
@ImportResource
**作用:**導入spring中的xml配置文件,使得配置中的文件生效
例子代碼如下:
@ImportResource(locations
= "classpath:test.xml")
@SpringBootApplication
public class DemoApplication {public static void main(String[] args
) {SpringApplication.run(DemoApplication.class, args
);}}
package com.example.demo.pojo;public class People {private String Pname;private int age
;public String getPname() {return Pname;}public void setPname(String pname
) {Pname = pname
;}public int getAge() {return age
;}public void setAge(int age
) {this.age
= age
;}}
package com.example.demo.controller;import com.example.demo.pojo.People;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
public class ControllerOne {@AutowiredPeople p
;@RequestMapping("/one")public People getP(){return p
;}
}
【注】 xml文件放置的位置,之后代碼在不同服務器上運行時,必須使用classpath,否則無法找到文件位置
結果:
總結
以上是生活随笔為你收集整理的@ImportResource的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。