您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何使用spring @value加載的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇如何使用spring @value加載文章都會(huì)有所收獲,下面我們一起來看看吧。
@value是spring中一個(gè)用來注入類的成員變量的一種注解,其從配置文件中注入配置的值,需要在spring中配置下需要注入這個(gè)類PropertyPlaceholderConfigurer,有多種出入方式,如:
<bean id="propertyConfigurer" class="PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath*:config/*.properties</value> </list> </property> <property name="ignoreUnresolvablePlaceholders" value="true" /> <property name="fileEncoding" value="UTF-8"/> </bean>
@Value注入是在spring注入該類的默認(rèn)構(gòu)造器之后,再進(jìn)行注入的。
使用
org.springframework.beans.BeanUtils的public static <T> T instantiateClass(Constructor<T> ctor, Object... args)
進(jìn)行實(shí)例化@Component的類。使用這個(gè)bean工廠DefaultListableBeanFactory。
使用
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(final String beanName, final RootBeanDefinition mbd, final Object[] args)
來創(chuàng)建這個(gè)bean的實(shí)例,mbd中是一些類似這樣的數(shù)據(jù):
scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null
默認(rèn)情況下spring管理的bean都是單例。
實(shí)例構(gòu)造完成之后,這個(gè)時(shí)候@Value注解就會(huì)觸發(fā),org.springframework.beans.factory.annotation。
AutowiredAnnotationBeanPostProcessor的inject(Object bean, String beanName, PropertyValues pvs)
這個(gè)方法就會(huì)將bean的屬性注入進(jìn)去了。
注入屬性完成后(下圖第557行),spring再去加載其他的bean。@Value其實(shí)也是使用了@AutoWire的機(jī)制。
由于spring只會(huì)在初始化時(shí),加載這個(gè)類的構(gòu)造器,如果需要修改配置文件中的值,可以通過spring上下文獲取bean實(shí)例,使用set方式修改值。
@Value加載中文時(shí)出現(xiàn)亂碼,可以在PropertyPlaceholderConfigurer配置編碼格式,上文的code中有調(diào)到,也可將中文改成unicode編碼。
使用@Value注解將變量進(jìn)行自動(dòng)注入的時(shí)候,經(jīng)常會(huì)出現(xiàn)的一個(gè)問題就是我們可能會(huì)由于在配置參數(shù)中忘記設(shè)置該參數(shù)造成整個(gè)項(xiàng)目報(bào)錯(cuò),其實(shí)我們可以通過給被@Value注解作用的變量進(jìn)行注入的時(shí)候如果沒有找到該配置參數(shù)時(shí)設(shè)置一個(gè)默認(rèn)值,相當(dāng)于是一個(gè)兜底的方案:
沒有默認(rèn)值的用法:
@Value("${spring.port}") private String port;
增加默認(rèn)值的用法:
@Value("${spring.port:8080}") private String port;
這里需要注意的是:
1.即使你的配置參數(shù)的值是String類型的話也不需要加雙引號
2.被static修飾的變量通過@Value會(huì)注入失敗
Consider defining a bean of type‘java.lang.String’ in your configuration.
這里是因?yàn)椋以谕粋€(gè)class 里面,引用了另一個(gè)注解@AllArgsConstructor
后面我對比刪除了@AllArgsConstructor,只是留下@Value 。項(xiàng)目正常啟動(dòng)。
結(jié)論:@AllArgsConstructor 與 @Value 注解不能同時(shí)使用
關(guān)于“如何使用spring @value加載”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“如何使用spring @value加載”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。