初識(shí)springboot
目錄結(jié)構(gòu)體如下
創(chuàng)新互聯(lián)從2013年開(kāi)始,是專(zhuān)業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元訥河做網(wǎng)站,已為上家服務(wù),為訥河各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18980820575
application.properties文件內(nèi)容
spring.profiles.active=@profiles.active@
application-dev.properties文件內(nèi)容
server.port=8001
application-prod.properties文件內(nèi)容
server.port=8003
以上配置是為了看不同環(huán)境下配置不一樣
dev
true
dev
prod
prod
mybatis
src/main/resources
**/*
src/main/resources
*.xml
*.properties
true
org.springframework.boot
spring-boot-maven-plugin
org.apache.maven.plugins
maven-compiler-plugin
1.8
org.apache.maven.plugins
maven-resources-plugin
default-resources
validate
copy-resources
target/classes
false
org.apache.maven.plugins
maven-surefire-plugin
true
**/Test*.java
true
org.apache.maven.plugins
maven-source-plugin
package
jar-no-fork
1.標(biāo)記說(shuō)遇到的坑
當(dāng)只是配置了profiles時(shí)是不起作用的,只有增加了對(duì)應(yīng)的resources標(biāo)簽啟動(dòng)打包才有作用。