1.建立maven項目spring
2.pom.xml添加以下內容:springboot
<!--1.指定依賴都由springboot管理--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> </parent> <!-- 。。。 --> <dependencies> <!--2.添加須要用到的依賴--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> </dependencies>
3.建立springboot項目啓動類:app
@SpringBootApplication public class MyApplication { public static void main(String[] args) { SpringApplication app = new SpringApplication(MyApplication.class); app.run(args); } }
1.進入spring官網下載springboot項目包:http://https://start.spring.io/maven
2.選擇須要的配置後下載:spring-boot
3.下載後解壓,在編譯器裏導入maven項目便可工具
1.下載並安裝spring tool suit :https://spring.io/tools3/sts/all (sts是一個定製版的Eclipse,專爲Spring開發定製的,方便建立調試運行維護Spring應用。ui
2.選擇配置並建立項目:spa