首頁 > 軟體

使用spring@value載入時機

2022-03-25 16:00:23

spring@value載入時機

@value是spring中一個用來注入類的成員變數的一種註解,其從組態檔中注入設定的值,需要在spring中設定下需要注入這個類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注入該類的預設構造器之後,再進行注入的。

使用

org.springframework.beans.BeanUtils的public static <T> T instantiateClass(Constructor<T> ctor, Object... args)

進行範例化@Component的類。使用這個bean工廠DefaultListableBeanFactory。

使用

org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(final String beanName, final RootBeanDefinition mbd, final Object[] args)

來建立這個bean的範例,mbd中是一些類似這樣的資料:

scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null

預設情況下spring管理的bean都是單例。

範例構造完成之後,這個時候@Value註解就會觸發,org.springframework.beans.factory.annotation。

AutowiredAnnotationBeanPostProcessor的inject(Object bean, String beanName, PropertyValues pvs)

這個方法就會將bean的屬性注入進去了。

注入屬性完成後(下圖第557行),spring再去載入其他的bean。@Value其實也是使用了@AutoWire的機制。

由於spring只會在初始化時,載入這個類的構造器,如果需要修改組態檔中的值,可以通過spring上下文獲取bean範例,使用set方式修改值。

@Value載入中文時出現亂碼,可以在PropertyPlaceholderConfigurer設定編碼格式,上文的code中有調到,也可將中文改成unicode編碼。

說說@value注入時問題

@Value設定預設值

使用@Value註解將變數進行自動注入的時候,經常會出現的一個問題就是我們可能會由於在設定引數中忘記設定該引數造成整個專案報錯,其實我們可以通過給被@Value註解作用的變數進行注入的時候如果沒有找到該設定引數時設定一個預設值,相當於是一個兜底的方案:

沒有預設值的用法:

@Value("${spring.port}")
private String port;

增加預設值的用法:

@Value("${spring.port:8080}")
private String port;

這裡需要注意的是:

1.即使你的設定引數的值是String型別的話也不需要加雙引號

2.被static修飾的變數通過@Value會注入失敗

使用@Value注入設定值的時候報錯

Consider defining a bean of type‘java.lang.String’ in your configuration.

這裡是因為,我在同一個class 裡面,參照了另一個註解@AllArgsConstructor

後面我對比刪除了@AllArgsConstructor,只是留下@Value 。專案正常啟動。

結論:@AllArgsConstructor 與 @Value 註解不能同時使用

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com