spring boot——读取应用配置——方式四——@PropertySource

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

=======================================================================

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

package org.example.controller;
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
@PropertySource({"test.properties","ok.properties"})
public class PropertySourceValueReaderOhterController
{

    @Value("${my.msg}")
    private String mymsg;

    @Value("${your.msg}")
    private String yourmsg;


    @RequestMapping("/testProperty")
    public String testProperty()
    {

        return "其他配置文件test.properties:" + mymsg + "<br>" + "其他配置文件ok.properties:" + yourmsg;
    }
    
}

 

 

 

 

 

 

 

 

 

 

 

 

 

==================================================================

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

posted @ 2023-01-01 22:00  小白龙白龙马  阅读(46)  评论(0)    收藏  举报