<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
1、application.yaml組態檔中增加一下測試設定
testdata: animal: lastName: 動物 age: 18 boss: true birth: 2022/02/22 maps: {key1:value1,key2:value2} list: [dog,cat,house] dog: name: 旺財 age: 3
2、新建entity實體類Animal
import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; import java.util.Date; import java.util.List; import java.util.Map; @Component//標識為Bean @ConfigurationProperties(prefix = "testdata.animal")//prefix字首需要和yml組態檔裡的匹配。 @Data//這個是一個lombok註解,用於生成getter&setter方法 public class Animal { private String lastName; private int age; private boolean boss; private Date birth; private Map<String,String> maps; private List<String> list; private Dog dog; }
3、新建entity實體類dog
package com.example.demo.db.config; import lombok.Data; import org.springframework.stereotype.Component; @Component//標識為Bean @Data//這個是一個lombok註解,用於生成getter&setter方法 @Configuration//標識是一個設定類 public class Dog { private String name; private int age; }
4、新建測試類MyTest
import com.example.demo.db.config.RemoteProperties; import junit.framework.TestCase; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class)//讓測試執行於Spring測試環境 @SpringBootTest(classes = DemoApplication.class)//指定啟動類 @EnableConfigurationProperties(RemoteProperties.class)//使RemoteProperties註解類生效 public class MyTests { @Autowired Animal animal; @Test public void test2() { System.out.println("person===="+animal); System.out.println("age======="+animal.getAge()); System.out.println("dog.name======="+animal.getDog().getName()+" dog.age===="+animal.getDog().getAge()); } }
5、執行結果:
1、resourcesconfig目錄下新建remote.properties組態檔,內容如下:
remote.testname=張三 remote.testpass=123456 remote.testvalue=ceshishuju
2、新建entity實體類RemoteProperties
package com.example.demo.db.config; import lombok.Data; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import org.springframework.stereotype.Component; @Configuration//表明這是一個設定類 @ConfigurationProperties(prefix = "remote",ignoreInvalidFields = false)//該註解用於繫結屬性。prefix用來選擇屬性的字首,也就是在remote.properties檔案中的「remote」,ignoreUnknownFields是用來告訴SpringBoot在有屬性不能匹配到宣告的域時丟擲異常。 @PropertySource(value="classpath:config/remote.properties",ignoreResourceNotFound = false)//組態檔路徑 @Data//這個是一個lombok註解,用於生成getter&setter方法 @Component//標識為Bean public class RemoteProperties { private String testname; private String testpass; private String testvalue; }
3、新建測試類MyTests
import com.example.demo.db.config.RemoteProperties; import junit.framework.TestCase; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class)//讓測試執行於Spring測試環境 @SpringBootTest(classes = DemoApplication.class)//指定啟動類 @EnableConfigurationProperties(RemoteProperties.class)//應用組態檔類,使RemoteProperties註解類生效 public class MyTests { @Autowired RemoteProperties remoteProperties; @Test public void test2() { TestCase.assertEquals(1, 1); String testpass=remoteProperties.getTestpass(); System.out.println("-----------:"+testpass); System.out.println("------------:"+remoteProperties.getTestvalue()); } }
4、執行結果:
1、resourcesconfig目錄下新建remote.yaml組態檔,內容如下:
remote: person: testname: 張三 testpass: 123456 testvalue: kkvalue
2、新建工廠轉換類PropertySourceFactory
package com.example.demo.db.config; import org.apache.logging.log4j.core.config.yaml.YamlConfigurationFactory; import org.springframework.boot.env.YamlPropertySourceLoader; import org.springframework.core.env.PropertySource; import org.springframework.core.io.support.EncodedResource; import org.springframework.core.io.support.PropertySourceFactory; import java.io.IOException; //把自定義組態檔.yml的讀取方式變成跟application.yml的讀取方式一致的 xx.xx.xx public class MyPropertySourceFactory implements PropertySourceFactory { @Override public PropertySource<?> createPropertySource(String name, EncodedResource encodedResource) throws IOException { return new YamlPropertySourceLoader().load(name,encodedResource.getResource()).get(0); } }
3、新建entity實體類RemoteProperties
package com.example.demo.db.config; import lombok.Data; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import org.springframework.stereotype.Component; @Configuration//表明這是一個設定類 @ConfigurationProperties(prefix = "remote",ignoreInvalidFields = false)//該註解用於繫結屬性。prefix用來選擇屬性的字首,也就是在remote.properties檔案中的「remote」,ignoreUnknownFields是用來告訴SpringBoot在有屬性不能匹配到宣告的域時丟擲異常。 @PropertySource(value="classpath:config/remote.yaml",factory = MyPropertySourceFactory.class)//組態檔路徑,設定轉換類 @Data//這個是一個lombok註解,用於生成getter&setter方法 @Component//標識為Bean public class RemoteProperties { @Value("${remote.person.testname}")//根據組態檔寫全路徑 private String testname; @Value("${remote.person.testpass}") private String testpass; @Value("${remote.person.testvalue}") private String testvalue; }
4、新建測試類MyTests
import com.example.demo.db.config.RemoteProperties; import junit.framework.TestCase; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class)//讓測試執行於Spring測試環境 @SpringBootTest(classes = DemoApplication.class)//指定啟動類 @EnableConfigurationProperties(RemoteProperties.class)//使RemoteProperties註解類生效 public class MyTests { @Autowired RemoteProperties remoteProperties; @Test public void test2() { TestCase.assertEquals(1, 1); String testpass=remoteProperties.getTestpass(); System.out.println("asdfasdf"+testpass); System.out.println("asdfasdf"+remoteProperties.getTestvalue()); } }
5、執行結果:
說明:
這裡需要寫一個工廠去讀取propertySource(在偵錯的時候我看到預設讀取的方式是xx.xx.xx而自定義的yml組態檔是每一個xx都是分開的,所以不能獲取到,而自己建立的設定類MyPropertySourceFactory就是需要把自定義組態檔.yml的讀取方式變成跟application的讀取方式一致的 xx.xx.xx,並且通過@Value註解指定變數的的關係和yaml組態檔對應)
可以加入依賴spring-boot-configuration-processor後續寫組態檔就有提示資訊:
<!-- 匯入檔案處理器,加上這個,以後編寫設定就有提示了--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId> spring-boot-configuration-processor</artifactId> <optional> true </optional> </dependency>
其他獲取設定相關內容後續更新。
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45