1. 程式人生 > >1、springboot入門------搭建第一個helloword

1、springboot入門------搭建第一個helloword

一、用Maven專案構建

1、搭建一個Maven專案(Create Maven專案的時候的Packaging時,選擇jar

 

2、pom檔案新增必須依賴:

  2.1、新增父依賴:

 <!-- 必須要引入繼承springboot-parent 實現很多jar的依賴 管理 -->
<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.3.RELEASE</version>
</parent>

  2.2、新增springboot-web依賴:

<dependencies>
  <!-- springboot 預設整合mvc 只需要引用springboot-web依賴即可 -->
  <dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
  </dependencies>

  2.3、儲存pom.xml,檢視maven是否引進對應的包了:

 

3、建立congtroller:

/**
 * @classDec : 功能描述(第一個spring-boot demo)
 * @author : 人間不得意
 * @createTime : 2018年1月9日上午10:14:37
 */ 
@RestController   //spring-boot提供的http-refult風格的註解,即:@restController=Controller每個方法加上@ResponseBody 
public class FirstController {

	@RequestMapping("/hello")
	public String welcome(){
		return "hello,world";
	}
}

  

4、啟動並檢視

  4.1、啟動main方法   4.2、開啟瀏覽器,輸入: http://127.0.0.1:8080/hello   

  成功!

 

二、通過ideal直接構建springboot專案:

1、    2、  

 

3、  

 

  4、

 

5、finish

 

6、建立完成:

 

7、這邊開始,後續操作和第一部分的2.2(新增web依賴)一樣。

 

謝謝各位看到最後