1. 程式人生 > >springboot學習--第一個例項

springboot學習--第一個例項

springboot入門例項

   建立自己的第一個例項hello World!,每一種學習的必學例項helloworld,使用的idea(自動第一次使用就喜歡上了)建立的

  1. new Project
  2. 點選next
  3. 可預設,也可以自己填寫,點選next
  4. 選擇web模組,點選next,建立完成,完成之後的目錄如下
  5. 可直接執行,通過SpringApplication類中的main方法啟動,是不是很簡單(相對於spring啟動之間需要配置一大堆的檔案)

下面來看一下pom.xml檔案中的依賴包:

     <dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
    </dependencies>

開始編寫一個類Demo

@RestController
public class Demo {
	@RequestMapping("/hello")
	public String hello(){
		return "hello word!";
	}
}

啟動專案

看到上面日誌,就說明專案正常啟動,下面在瀏覽器中輸入:http://localhost:8080/hello

springboot的入門例項搞定收工,歡迎吐槽!