這篇文章將為大家詳細(xì)講解有關(guān)Spring Boot + Mybatis + Spring MVC環(huán)境配置中Spring Boot如何實(shí)現(xiàn)初始化以及依賴添加,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián),專注為中小企業(yè)提供官網(wǎng)建設(shè)、營銷型網(wǎng)站制作、成都響應(yīng)式網(wǎng)站建設(shè)公司、展示型網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站等服務(wù),幫助中小企業(yè)通過網(wǎng)站體現(xiàn)價(jià)值、有效益。幫助企業(yè)快速建站、解決網(wǎng)站建設(shè)與網(wǎng)站營銷推廣問題。
看一下Spring Boot官方的介紹http://spring.io/projects/spring-boot :
Spring Boot讓開發(fā)者省去了大多數(shù)Spring的配置,讓其只需要關(guān)注主要的開發(fā)和進(jìn)行少量的Spring配置。
嵌入了Tomcat,已定義好大多數(shù)的依賴關(guān)系,簡化了項(xiàng)目的構(gòu)建配置。我們在使用的時(shí)候不用關(guān)心框架之間的兼容性,適用版本等問題,想使用的東西,僅僅添加一個(gè)配置就可以了,所以使用spring boot非常適合構(gòu)建微服務(wù)。
第一步,訪問https://start.spring.io/ 生成一個(gè)spring boot項(xiàng)目
生成之后會下載一個(gè)壓縮包,解壓后,在Eclipse中Import為Maven項(xiàng)目
第二步,添加額外需要的依賴,如Mybatis
pom.xml內(nèi)容如下:
4.0.0 com.kai demo 0.0.1-SNAPSHOT jar demo Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.4.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-devtools true MySQL mysql-connector-java org.mybatis mybatis 3.4.6 org.mybatis mybatis-spring 1.3.2 org.apache.logging.log4j log4j 2.11.1 pom org.springframework spring-jdbc com.zaxxer HikariCP 3.2.0 org.springframework.boot spring-boot-maven-plugin true
引入web模塊
Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container
org.springframework.boot spring-boot-starter-web
pom.xml文件中默認(rèn)有兩個(gè)模塊:
spring-boot-starter:核心模塊,包括自動(dòng)配置支持、日志和YAML;
spring-boot-starter-test:測試模塊,包括JUnit、Hamcrest、Mockito。
開發(fā)環(huán)境的調(diào)試
熱啟動(dòng)在正常開發(fā)項(xiàng)目中已經(jīng)很常見了吧,雖然平時(shí)開發(fā)web項(xiàng)目過程中,改動(dòng)項(xiàng)目啟重啟總是報(bào)錯(cuò);但springBoot對調(diào)試支持很好,修改之后可以實(shí)時(shí)生效,需要添加以下的配置:
org.springframework.boot spring-boot-devtools true org.springframework.boot spring-boot-maven-plugin true
關(guān)于“Spring Boot + Mybatis + Spring MVC環(huán)境配置中Spring Boot如何實(shí)現(xiàn)初始化以及依賴添加”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。