spring boot项目获取application配置文件参数的两种方式

前言:了解过spring boot这个技术的,应该知道spring boot的核心配置文件application.properties,当然也可以通过注解自定义配置文件**.properties的信息。

(1)核心配置文件application.properties内容如下:

  1. test.msg=Hello World SpringBoot

方式一:使用@Value方式(常用)

1.   package Solin.controller;

2.  

3.   import org.springframework.beans.factory.annotation.Value;

4.   import org.springframework.web.bind.annotation.RequestMapping;

5.   import org.springframework.web.bind.annotation.RestController;

6.  

7.   @RestController

8.   public class WebController {

9.       @Value("${test.msg}")

10.    private String msg;

11.

12.    @RequestMapping("/index1")

13.    public String index1(){

14.        return "方式一:"+msg;

15.    }

16.}

方式二:使用Environment方式

  1. package Solin.controller;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.beans.factory.annotation.Value;
  4. import org.springframework.core.env.Environment;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.web.bind.annotation.RestController;
  7. @RestController
  8. public class WebController {
  9. @Autowired
  10. private Environment env;
  11. @RequestMapping("/index2")
  12. public String index2(){
  13. return "方式二:"+env.getProperty("test.msg");
  14. }
  15. }

注意,使用类都必须已经加入到spring容器中,前面文章已经讲解放入spring容器的方式

上一篇:Maven添加Oracle驱动及依赖


下一篇:maven添加oracle jdbc依赖