SpringBoot幾乎集成了SpringMVC的所有內(nèi)容,以及tomcat容器,同時(shí)去除了繁復(fù)的xml配置文件,開(kāi)發(fā)起來(lái)十分方便;頁(yè)面配合thymeleaf模板渲染也是非常簡(jiǎn)單,如果是前后端分離的項(xiàng)目,那么SpringBoot就專門(mén)負(fù)責(zé)提供restful風(fēng)格的api接口,通過(guò)json格式與前端進(jìn)行數(shù)據(jù)交互。
成都創(chuàng)新互聯(lián)公司是專業(yè)的扶綏網(wǎng)站建設(shè)公司,扶綏接單;提供網(wǎng)站設(shè)計(jì)制作、網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行扶綏網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!下面pom.xml里面一些依賴
<?xml version="1.0" encoding="UTF-8"?>4.0.0 com.test demo 0.0.1-SNAPSHOT common web pom demo a project for Spring Boot org.springframework.boot spring-boot-starter-parent 1.5.1.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-logging org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-devtools true org.springframework.boot spring-boot-starter-thymeleaf org.apache.tomcat tomcat-jdbc 7.0.47 org.springframework spring-tx 4.3.6.RELEASE org.springframework spring-jdbc 4.3.6.RELEASE mysql mysql-connector-java org.mybatis.spring.boot mybatis-spring-boot-starter 1.1.1 com.alibaba druid 1.0.19 net.sf.json-lib json-lib 2.4 jdk15 commons-logging commons-logging commons-httpclient commons-httpclient 3.0.1 org.apache.logging.log4j log4j-slf4j-impl 2.4.1 org.apache.logging.log4j log4j-api 2.4.1 org.apache.logging.log4j log4j-core 2.4.1 org.slf4j jcl-over-slf4j 1.7.12 demo src/main/resources application-dev.properties application-prod.properties application.properties true true src/main/resources application-${environment}.properties application.properties dev dev true prod prod