當(dāng)前位置:
首頁(yè) >
前端技术
> javascript
>内容正文
javascript
springboot初始化加载数据_Spring Boot配置数据加载大全
生活随笔
收集整理的這篇文章主要介紹了
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)題。
- 上一篇: 为什么多个线程不可能同时抢到一把锁_分布
- 下一篇: gradle idea java ssm