SpringBoot2.0之一 新建項目helloWorld
阿新 • • 發佈:2018-05-03
表示 stc mta 文章 -h AS ota configure main
SpringBoot 以簡單快速很快獲得了廣大開發者的青睞,本套SpringBoot系列以最新的SpringBoot 2.0為基礎,同時會提及不同版本下SpringBoot的修改和變化,如有理解不當的地方,歡迎留言指正!
1、新建一個Maven項目,目錄結構如下
2、引入依賴包
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
3、創建SpringBoot的啟動類
package com.somta.springboot; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { public static void main(String [] args) { SpringApplication.run(Application.class, args); } }
查看@SpringBootApplication源碼可以發現,該註解被 @Configuration、@EnableAutoConfiguration、@ComponentScan 註解所修飾,換言之 Springboot 提供了統一的註解來替代以上三個註解,達到簡化程序的配置,具體每個配置的作用在後續文章中會更新
4、創建一個Controller類
@RestController public class HelloWorldController { @RequestMapping("/helloWorld") publicString index() { return "HelloWorld"; } }
5、啟動SpringBoot啟動類,出現如下所示的內容表示項目啟動成功
5、最後在瀏覽器上輸入http://127.0.0.1:8080/helloWorld 看到如下所示的界面,你的第一個SpringBoot項目就搭建成功了
Git代碼地址:https://gitee.com/songhu/SpringBoot/tree/master/SpringBoot-helloWorld
SpringBoot2.0之一 新建項目helloWorld