赞
踩
@PropertySource:加载指定的配置文件【properties】.
先前我们通过@ConfifigurationProperties加载全局配置文件中的值到javabean中,但是我们在具体使用的时候不会把所用的配置都保存在全局配置文件中的,可能会将不同的配置保存在不同的配置文件中,那么这时我们就需要@PropertySource注解为指定的javabean类加载指定的配置文件
例如:
- package com.wangxing.springboot.bean;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.context.annotation.PropertySource;
- import org.springframework.stereotype.Component;
- @Component
- @ConfigurationProperties(prefix = "person")
- @PropertySource(value = {"classpath:person.properties"})
- public class PersonBean {
- private int perid;
- private String pername;
- private int perage;
- private String peraddress;
-
- public int getPerid() {
- return perid;
- }
-
- public void setPerid(int perid) {
- this.perid = perid;
- }
-
- public String getPername() {
- return pername;
- }
-
- public void setPername(String pername) {
- this.pername = pername;
- }
-
- public int getPerage() {
- return perage;
- }
-
- public void setPerage(int perage) {
- this.perage = perage;
- }
-
- public String getPeraddress() {
- return peraddress;
- }
-
- public void setPeraddress(String peraddress) {
- this.peraddress = peraddress;
- }
- }

- person.properties
- person.perid=1002
- person.pername=lisi
- person.perage=24
- person.peraddress=北京
- package com.wangxing.springboot.controller;
- import com.wangxing.springboot.bean.PersonBean;
- import com.wangxing.springboot.bean.StudentBean;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- @Controller
- public class TestController {
- @Autowired
- private PersonBean personBean;
- @RequestMapping(value = "/perinfo")
- @ResponseBody
- public String getPersonInfo(){
- String perinfo=personBean.getPerid()+"\t"+
- personBean.getPername()+"\t"+
- personBean.getPerage()+"\t"+
- personBean.getPeraddress();
- return perinfo;
- }

名称 | 用途 |
@PropertySource(value = "classpath:studentbean.properties") | 标注在类上,指定的配置文件【properties】,可以引入多个配置文件,例如 @PropertySource({ "classpath:studentbean.properties", "classpath:person.properties"}) |
@Value("${xxxx}") | 标注在成员变量上,设置当前成员变量的初始值,可以直接设值@Value("zhangsan"),也可以从@PropertySource指定的配置文件【properties】中取值设置给成员变量@Value("${xxxx}") |
@ConfigurationProperties(prefix = "person") | 标注在类上,表示设置当前类在配置文件【properties】的配置名称【prefix = "person"】 |
2.@ImportResource
@ImportResource:导入基于XML的Spring的配置文件,让配置文件里面的内容生效;
- package com.wangxing.springboot.bean;
- public class UserBean {
- private int userid;
- private String username;
- private int userage;
- private String useraddress;
- public int getUserid() {
- return userid;
- }
-
- public void setUserid(int userid) {
- this.userid = userid;
- }
-
- public String getUsername() {
- return username;
- }
-
- public void setUsername(String username) {
- this.username = username;
- }
-
- public int getUserage() {
- return userage;
- }
-
- public void setUserage(int userage) {
- this.userage = userage;
- }
-
- public String getUseraddress() {
- return useraddress;
- }
-
- public void setUseraddress(String useraddress) {
- this.useraddress = useraddress;
- }
- }

- package com.wangxing.springboot.controller;
- import com.wangxing.springboot.bean.UserBean;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- import org.springframework.web.servlet.ModelAndView;
- import org.springframework.web.servlet.mvc.Controller;
-
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
-
- public class TestController implements Controller {
-
- private UserBean userBean;
-
- public UserBean getUserBean() {
- return userBean;
- }
-
- public void setUserBean(UserBean userBean) {
- this.userBean = userBean;
- }
-
- @Override
- public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
- String userinfo=userBean.getUserid()+"\t"+
- userBean.getUsername()+"\t"+
- userBean.getUserage()+"\t"+
- userBean.getUseraddress();
- System.out.println("userinfo=="+userinfo);
- return null;
- }
- }

- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
- <bean id="userBean" class="com.wangxing.springboot.bean.UserBean">
- <property name="userid" value="1004"></property>
- <property name="username" value="lisi"></property>
- <property name="userage" value="24"></property>
- <property name="useraddress" value="beijing"></property>
- </bean>
- <bean name="/test" class="com.wangxing.springboot.controller.TestController">
- <property name="userBean" ref="userBean"></property>
- </bean>
- </beans>
Spring Boot里面没有Spring的配置文件,我们自己编写的配置文件,也不能自动识别;
想让Spring的配置文件生效,加载进来;@ImportResource标注在一个主类上.
3.@Configuration @Bean @Import
- package com.wangxing.springboot.bean;
- public class UserBean {
- private int userid;
- private String username;
- private double userdouble;
- private boolean usersex;
- public int getUserid() {
- return userid;
- }
- public void setUserid(int userid) {
- this.userid = userid;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- public double getUserdouble() {
- return userdouble;
- }
- public void setUserdouble(double userdouble) {
- this.userdouble = userdouble;
- }
- public boolean isUsersex() {
- return usersex;
- }
- public void setUsersex(boolean usersex) {
- this.usersex = usersex;
- }
- }

- package com.wangxing.springboot.config;
- import com.wangxing.springboot.bean.UserBean;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;=
- @Configuration
- public class UserConfig {
- @Bean
- public UserBean getBean(){
- UserBean userBean= new UserBean();
- userBean.setUserid(1001);
- userBean.setUsername("zhangsan");
- userBean.setUserdouble(168.9);
- userBean.setUsersex(true);
- return userBean;
- }
- }

- package com.wangxing.springboot.controller;
- import com.wangxing.springboot.bean.UserBean;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- @RestController
- @RequestMapping("/user")
- public class UserController {
- @Autowired
- private UserBean userBean;
- @RequestMapping("/testUserBean.do")
- public void testUserBean(){
- int userid= userBean.getUserid();
- String username= userBean.getUsername();
- double userdouble= userBean.getUserdouble();
- boolean usersex= userBean.isUsersex();
- System.out.println(userid+","+username+","+userdouble+","+usersex);
- }
- }

- package com.wangxing.springboot.springbootdemo7;
- import com.wangxing.springboot.config.UserConfig;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.ComponentScans;
- import org.springframework.context.annotation.Import;
- @SpringBootApplication
- @ComponentScan(basePackages = "com.wangxing.springboot")
- @Import(UserConfig.class)
- public class Springbootdemo7Application {
- public static void main(String[] args) {
- SpringApplication.run(Springbootdemo7Application.class, args);
- }
- }
名称 | 用途 |
@Configuration | 标注在类上,表示当前类是一个java Config形式的配置类,可以代替基于xml的配置文件 |
@Bean | 标注在方法上,告诉springIOC容器创建javabean类对象 相当于在基于xml配置文件中的 <bean id=”” class=””></bean> |
@Import(xxxConfig.class) | 标注在主类上,表示导入xxxConfig.class【java Config形式的配置类】 |
配置文件【application.properties】中的占位符
1、随机数
${random.value}、${random.int}、${random.long}
${random.int(10)}、${random.int[1024,65536]}
例如:
- package com.wangxing.springboot.bean;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.context.annotation.PropertySource;
- import org.springframework.stereotype.Component;
- @Component
- @ConfigurationProperties(prefix = "student")
- public class StudentBean {
- private int stuid;
- private String stuname;
- private int stuage;
- private String stuaddress;
- public int getStuid() {
- return stuid;
- }
- public void setStuid(int stuid) {
- this.stuid = stuid;
- }
- public String getStuname() {
- return stuname;
- }
- public void setStuname(String stuname) {
- this.stuname = stuname;
- }
- public int getStuage() {
- return stuage;
- }
- public void setStuage(int stuage) {
- this.stuage = stuage;
- }
- public String getStuaddress() {
- return stuaddress;
- }
- public void setStuaddress(String stuaddress) {
- this.stuaddress = stuaddress;
- }
- }

- application.properties
- student.stuid=${random.int}
- student.stuname=zhangsan
- student.stuage=${random.int[1024,65536]}
- student.stuaddress=${student.stuname}_地址
- package com.wangxing.springboot.controller;
- import com.wangxing.springboot.bean.StudentBean;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- @Controller
- public class TestController {
- @Autowired
- private StudentBean studentBean;
- @RequestMapping(value = "/test")
- @ResponseBody
- public String testStudent(){
- System.out.println(studentBean.getStuid());
- System.out.println(studentBean.getStuname());
- System.out.println(studentBean.getStuage());
- System.out.println(studentBean.getStuaddress());
- return "";
- }
- }

Profiles
测试.properties配置
- application-dev.properties【开发环境配置】
- server.port=8080
- application-prod.properties【生产环境配置】
- server.port=9090
- application.properties 【主配置】
- spring.profiles.active=prod 【指定使用生产环境配置】
- http://localhost:9090/testInfo
- 或者
- spring.profiles.active=dev 【指定使用开发环境配置】
- http://localhost:8080/testInfo
测试.yml配置
- application-devyml.yml【开发环境配置】
- server:
- port: 8080
- application-prodyml.yml【生产环境配置】
- server:
- port: 9090
- application.yml 【主配置】
- spring:
- profiles:
- active: prodyml 【指定使用生产环境配置】
- http://localhost:9090/testInfo
- 或者
- spring:
- profiles:
- active: devyml 【指定使用开发环境配置】
http://localhost:8080/testInfo
上面是通过在1.主配置文件中切换运行环境配置
还可以通过配置2.运行环境参数配置视图窗口来指定具体使用哪一个运行环境
“--spring.profiles.active=dev“
还可以通过3.命令行运行jar的时候指定具体使用哪一个运行环境
java -jar testspringboot002-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev;
还可以通过4.配置虚拟机参数指定具体使用哪一个运行环境;
“-Dspring.profiles.active=dev”
注意:运行环境配置文件的名称 application-{profiles}.properties/yml
主配置文件加载位置
spring boot 启动会扫描以下位置的application.properties或者 application.yml文件作为Spring boot的默认配置文件
– 项目根目录/config/
– 项目根目录/
– resource/config/
– resource:/
以上是按照优先级从高到低的顺序,所有位置的文件都会被加载,高优先级配置内容会覆盖低优先级配置内容。
SpringBoot会从这四个位置全部加载主配置文件;互补配置
我们也可以通过配置spring.config.location来改变默认配置
项目打包好以后,我们可以使用命令行参数的形式,启动项目的时候来指定配置文件的新位置;指定配置文件和默认加载的这些配置文件共同起作用形成互补配置;
java -jar testspringboot02-0.0.1-SNAPSHOT.jar --spring.confifig.location=F:/application.properties
外部配置加载顺序
Spring Boot 支持多种外部配置方式
1. 命令行参数
2. 来自java:comp/env的JNDI属性
3. Java系统属性(System.getProperties())
4. 操作系统环境变量
5. RandomValuePropertySource配置的random.*属性值
6. jar包外部的application-{profile}.properties或application.yml(带spring.profile)配置文件
7. jar包内部的application-{profile}.properties或application.yml(带spring.profile)配置文件
8. jar包外部的application.properties或application.yml(不带spring.profile)配置文件
9. jar包内部的application.properties或application.yml(不带spring.profile)配置文件
优先加载带profifile,再来加载不带profifile,由jar包外向jar包内进行寻找
10. @Configuration注解类上的@PropertySource
11. 通过SpringApplication.setDefaultProperties指定的默认属性
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。