欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring boot导入自定义properties配置文件。

程序员文章站 2022-04-30 23:13:13
...
  1. 导入自定义properties文件。
self.define.username=test1
self.define.password=root
self.define.nickname=小飞

springboot好像不需要xml了,所以只能用注解引入了。写一个引入的java类。

使用注解@PropertySource("classpath:define.properties") 引入自己的properties文件。

使用注解@ConfigurationProperties(prefix="self.define") 表示属性文件前缀,就可以,这个javabean就可以获取到相应的属性值了。实例如下

package com.neo;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;

@Component
@ConfigurationProperties(prefix="self.define")
@PropertySource("classpath:define.properties")
public class DefineTest {

    private String username;

    private String password;

    private String nickname;


    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
    }

    public String getNickname() {
        return nickname;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public void setNickname(String nickname) {
        this.nickname = nickname;
    }
}