通常mvn若是配置有環境,直接在tomcat server中沒法直接啓動,須要在vm或者tomcat啓動中添加profile啓動。spring
pom.xml中添加:tomcat
在<profile>中添加默認profile,<activation><activeByDefault>true</activeByDefault></activation>而後在vm中添加-Dspring.profiles.default='local'另外一種激活:-Dspring.profiles.active=dev在Server中打開 :選擇 Open launcher Configuration在vm中添加以上內容,或者在environment添加以上內容便可。