日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 前端技术 > javascript >内容正文

javascript

springboot初始化加载数据_Spring Boot配置数据加载大全

發(fā)布時(shí)間:2025/3/19 javascript 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 springboot初始化加载数据_Spring Boot配置数据加载大全 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

關(guān)于注入數(shù)據(jù)說(shuō)明

1.不通過(guò)配置文件注入數(shù)據(jù)

通過(guò)@Value將外部的值動(dòng)態(tài)注入到Bean中,使用的情況有:

  • 注入普通字符串
  • 注入操作系統(tǒng)屬性
  • 注入表達(dá)式結(jié)果
  • 注入其他Bean屬性:注入Student對(duì)象的屬性name
  • 注入文件資源
  • 注入U(xiǎn)RL資源

輔助代碼

package com.hannpang.model;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Component(value = "st")//對(duì)student進(jìn)行實(shí)例化操作public class Student { @Value("悟空") private String name; public String getName() { return name; } public void setName(String name) { this.name = name; }}

測(cè)試@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; //關(guān)于屬性的KEY可以查看System類(lèi)說(shuō)明 @Value("#{systemProperties['java.version']}")//-->使用了SpEL表達(dá)式 private String systemPropertiesName; // 注入操作系統(tǒng)屬性 @Value("#{T(java.lang.Math).random()*80}")//獲取隨機(jī)數(shù) private double randomNumber; //注入表達(dá)式結(jié)果 @Value("#{1+2}") private double sum; //注入表達(dá)式結(jié)果 1+2的求和 @Value("classpath:os.yaml") private Resource resourceFile; // 注入文件資源 @Value("http://www.baidu.com") private Resource testUrl; // 注入U(xiǎn)RL資源 @Value("#{st.name}") private String studentName; //省略getter和setter方法 @Override public String toString() { return "SimpleObject{" + "normal='" + normal + ''' +

總結(jié)

以上是生活随笔為你收集整理的springboot初始化加载数据_Spring Boot配置数据加载大全的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。