Spring使用——读取properties配置文件

发布时间:2022-12-08 19:30

一、Spring注解——PropertySource

配置类

package com.ysy.config;

import com.ysy.Person;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;

/**

  • @author shanyangyang
  • @date 2020/6/2
    */
    //使用PropertySource读取外部文件中的k/v保存到运行的环境变量中
    @PropertySource(value = {“classpath:/person.properties”})
    @Configuration
    public class MainConfigOfPropertyValue {
    @Bean
    public Person person(){
    return new Person();
    }

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号