目前最新版本是 2.1.4,個人建議是先通讀一遍,瞭解下章節和概要,這樣有利於一個全局的把握。web
2. 快速開始搭建一個項目spring
右鍵新建立,spring-boot
建立完成後的項目結構以下:3d
由於是要進行web 端的開發,引入須要的包code
<!-- web的模塊 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
編寫咱們的第一個程序 hello:blog
啓動咱們MyFirstSpringBootApplication中的 main 方法:開發
啓動完成後,在地址欄中輸入: http://localhost:8080/hello ,就出現下面的結果,是否是很是的方便。get
注: 這裏面涉及到的一些基礎知識我就不進行相關的介紹了,直接告知怎麼進行代碼搭建。(好比: @RestController ,@SpringBootApplication 這個註解等自行了解)io