您好,登錄后才能下訂單哦!
今天小編給大家分享一下Spring和SpringBoot的區別是什么的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
spring 家族 有很多項目,springboot、spring framework、spring cloud等。
我們常用的也就是,springboot、springcloud、springsecurity、springdata。常說的 springmvc 只是spring framework 的特性之一。
1、內嵌 Servlet 容器,可以直接打成jar包,通過 java -jar xx.jar 運行項目。
2、提供 starter pom 系列,簡化maven的依賴加載,減少依賴沖突的發生。
3、支持自動化配置,如下圖。application.properties 文件在引入springboot和未引入springboot時,是不一樣的。
實現的源碼:springboot回去判斷引入的jar包是否有 spring.factories 文件
@EnableAutoConfiguration @Import({AutoConfigurationImportSelector.class}) protected List getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) { List configurations = SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader()); Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you are using a custom packaging, make sure that file is correct."); return configurations; }
以上就是“Spring和SpringBoot的區別是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。