spinrgboot配置之@PropertySource和@ImportResource
一、@PropertySource:用于加载指定的配置文件 比如我们在resource下新建一个person.properties person.username=李四 person.age=12 person.email=zhangsan@qq.com person.maps.k1=v1 person.maps.k2=v2 person.lists=a,b,c person.dog.name=tom person.dog.age=2 在person.java中 package com.gong.springboot.bean; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.PropertySource; import org.springframework.stereotype.Component; import java.util.List; import java.util.Map; //将配置文件中的属性映射到组件中 //prefix