當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
springboot初始化加载数据_Spring Boot配置数据加载大全
生活随笔
收集整理的這篇文章主要介紹了
springboot初始化加载数据_Spring Boot配置数据加载大全
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
關于注入數據說明
1.不通過配置文件注入數據
通過@Value將外部的值動態注入到Bean中,使用的情況有:
- 注入普通字符串
- 注入操作系統屬性
- 注入表達式結果
- 注入其他Bean屬性:注入Student對象的屬性name
- 注入文件資源
- 注入URL資源
輔助代碼
package com.hannpang.model;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Component(value = "st")//對student進行實例化操作public class Student { @Value("悟空") private String name; public String getName() { return name; } public void setName(String name) { this.name = name; }}測試@Value的代碼
package com.hannpang.model;import org.springframework.beans.factory.annotation.Value;import org.springframework.core.io.Resource;import org.springframework.stereotype.Component;@Componentpublic class SimpleObject { @Value("注入普通字符串") private String normal; //關于屬性的KEY可以查看System類說明 @Value("#{systemProperties['java.version']}")//-->使用了SpEL表達式 private String systemPropertiesName; // 注入操作系統屬性 @Value("#{T(java.lang.Math).random()*80}")//獲取隨機數 private double randomNumber; //注入表達式結果 @Value("#{1+2}") private double sum; //注入表達式結果 1+2的求和 @Value("classpath:os.yaml") private Resource resourceFile; // 注入文件資源 @Value("http://www.baidu.com") private Resource testUrl; // 注入URL資源 @Value("#{st.name}") private String studentName; //省略getter和setter方法 @Override public String toString() { return "SimpleObject{" + "normal='" + normal + ''' +總結
以上是生活随笔為你收集整理的springboot初始化加载数据_Spring Boot配置数据加载大全的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 为什么多个线程不可能同时抢到一把锁_分布
- 下一篇: python qt教程_Python -