springBoot系列常用注解(小結(jié))
作用是:對自定義的properties文件加載
使用:@PropertySource(value={'classpath:people.properties'})或者@PropertySource(value='classpath:people.properties')
properties文件,獲取到值亂碼問題
亂碼解決:
file ->settings -->file encoding--> 勾選Transparent native-to-ascill conversion
作用:可以讓spring的配置文件生效
使用:在啟用類上加ImportResource注解,如@ImportResource(value = 'classpath:person.xml')或者@ImportResource(locations ={'classpath:person.xml'})
@Conditional作用:必須是@Conditional指定的條件成立,才給容器中添加組件或者是讓自動配置類生效。
以 HttpEncodingAutoConfiguration 自動配置類舉例
@Configuration(proxyBeanMethods = false)@EnableConfigurationProperties(ServerProperties.class)@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.SERVLET)@ConditionalOnClass(CharacterEncodingFilter.class)@ConditionalOnProperty(prefix = 'server.servlet.encoding', value = 'enabled', matchIfMissing = true)public class HttpEncodingAutoConfiguration { private final Encoding properties; public HttpEncodingAutoConfiguration(ServerProperties properties) {this.properties = properties.getServlet().getEncoding();} @Bean@ConditionalOnMissingBeanpublic CharacterEncodingFilter characterEncodingFilter() {CharacterEncodingFilter filter = new OrderedCharacterEncodingFilter();filter.setEncoding(this.properties.getCharset().name());filter.setForceRequestEncoding(this.properties.shouldForce(Encoding.Type.REQUEST));filter.setForceResponseEncoding(this.properties.shouldForce(Encoding.Type.RESPONSE));return filter;}
@ConditionalOnMissingBean:作用是如果容器中不存在CharacterEncodingFilter 這個bean則實(shí)例化創(chuàng)建一個,存在就不走下面的代碼
@ConditionalOnClass(CharacterEncodingFilter.class):作用是如果容器中存在CharacterEncodingFilter 這個bean(其中一個條件)則才能夠?qū)嵗邆€自動配置類HttpEncodingAutoConfiguration
@ConditionalOnProperty(prefix = 'server.servlet.encoding', value = 'enabled', matchIfMissing = true)作用是如果配置文件中配置了server.servlet.encoding=enabled則才能夠?qū)嵗哌@個個自動配置類HttpEncodingAutoConfiguration
springBoot中所有的自動配置類位置:
orgspringframeworkbootspring-boot-autoconfigure2.4.5spring-boot-autoconfigure-2.4.5.jar!META-INFspring.factories文件中
如何判斷spring.factories這個文件中那些自動配置類是生效的?
在yml或者applicaton.properties中配置,會在控制臺打印自動配置類生效報告:
########打印自動配置類生效的報告##########debug =true
其中:Negative match:表示未生效;Positive match:表示生效的
到此這篇關(guān)于springBoot系列常用注解(小結(jié))的文章就介紹到這了,更多相關(guān)springBoot常用注解內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. JSP+Servlet實(shí)現(xiàn)文件上傳到服務(wù)器功能2. 利用ajax+php實(shí)現(xiàn)商品價格計算3. 利用FastReport傳遞圖片參數(shù)在報表上展示簽名信息的實(shí)現(xiàn)方法4. chat.asp聊天程序的編寫方法5. 網(wǎng)頁中img圖片使用css實(shí)現(xiàn)等比例自動縮放不變形(代碼已測試)6. PHP循環(huán)與分支知識點(diǎn)梳理7. jsp實(shí)現(xiàn)textarea中的文字保存換行空格存到數(shù)據(jù)庫的方法8. JSP之表單提交get和post的區(qū)別詳解及實(shí)例9. Ajax請求超時與網(wǎng)絡(luò)異常處理圖文詳解10. jsp實(shí)現(xiàn)登錄驗證的過濾器
