您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何使用spring @value加載的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何使用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("${spring.port}") private String port;
增加默認值的用法:
@Value("${spring.port:8080}") private String port;
這里需要注意的是:
1.即使你的配置參數的值是String類型的話也不需要加雙引號
2.被static修飾的變量通過@Value會注入失敗
Consider defining a bean of type‘java.lang.String’ in your configuration.
這里是因為,我在同一個class 里面,引用了另一個注解@AllArgsConstructor
后面我對比刪除了@AllArgsConstructor,只是留下@Value 。項目正常啟動。
結論:@AllArgsConstructor 與 @Value 注解不能同時使用
關于“如何使用spring @value加載”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“如何使用spring @value加載”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。