spring中使用@value

一、配置文件配置

直接配置

在src/main/resources下添加配置文件application.properties 
例如修改端口号

#端口号
server.port=8089
分环境配置

在src/main/resources下添加,application-pro.properties,application-dev.properties和application.properties三个文件 
application.properties

spring.profiles.active=dev

application-pro.properties

#端口号
server.port=80
#自定义端口号读取
my.name=pzr.dev

application-dev.properties

#端口号
server.port=8089
#自定义端口号读取
my.name=pzr.pro

当application.propertie设置spring.profiles.active=dev时,则说明是指定使用application-dev.properties文件进行配置

二、配置文件参数读取

2.1、注解方式读取

1、@PropertySource配置文件路径设置,在类上添加注解,如果在默认路径下可以不添加该注解。

需要用@PropertySource的有:

  • 例如非application.properties,classpath:config/my.properties指的是src/main/resources目录下config目录下的my.properties文件,
  • 例如有多配置文件引用,若取两个配置文件中有相同属性名的值,则取值为最后一个配置文件中的值
  • 在application.properties中的文件,直接使用@Value读取即可,applicarion的读取优先级最高
@PropertySource({"classpath:config/my.properties","classpath:config/config.properties"})
public class TestController

2、@Value属性名,在属性名上添加该注解

@Value("${my.name}")
private String myName;

 

示例1:使用@Value读取application.properties里的配置内容

配置文件application.properties

spring.application.name=springbootdemo
server.port=8080
mail.username=application-duan
mail.password=application-duan123456

启动类

复制代码
package com.dxz.property5;

import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;

@SpringBootApplication
public class TestProperty5 {

    public static void main(String[] args) {
        //SpringApplication.run(TestProperty1.class, args);
        new SpringApplicationBuilder(TestProperty5.class).web(true).run(args);

    }
}
复制代码

测试类:

复制代码
package com.dxz.property5;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/task")
//@PropertySource("classpath:mail.properties")
public class TaskController {

    @Value("${mail.username}")
    private String userName;
    
    @Value("${mail.password}")
    private String password;

    @RequestMapping(value = { "/", "" })
    public String hellTask() {
        System.out.println("userName:" + userName);
        System.out.println("password:" + password);
        return "hello task !!";
    }

}
复制代码

结果:

userName:application-duan
password:application-duan123456

示例2:使用@Value+@PropertySource读取其它配置文件(多个)内容

读取mail.properties配置

复制代码
package com.dxz.property5;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/task")
@PropertySource("classpath:mail.properties")
public class TaskController {
    @Value("${mail.smtp.auth}")
    private String userName;
    
    @Value("${mail.from}")
    private String password;

    @RequestMapping(value = { "/", "" })
    public String hellTask() {
        System.out.println("userName:" + userName);
        System.out.println("password:" + password);
        return "hello task !!";
    }

}
复制代码

结果:

userName:false
password:me@localhost

猜你喜欢

转载自www.cnblogs.com/sw3828/p/9284878.html