看【kotlin 練功場 - Spring Boot 組】社群朋友的筆記裝起來的,感恩感恩。
step 1. 下載 IntelliJ Commuity
step 2. 下載 spring initializr
step 3. 用 IntelliJ 開啟舊檔打開 demo
step 4. 做個 HelloController
步驟
step 1. 下載 IntelliJ Commuity
https://www.jetbrains.com/idea/download/
step 2. 下載 spring initializr
Spring initializr 是幫忙建立 Spring boot專案的小Tool, Spring Boot 就是把許多煩雜的 Framework 透過它來簡單就能設定使用
- Project -> Gradle
- Language -> Kotlin
- 右上角 add Dependencies 加入 Spring Web
- 按 generate 會產生 demo.zip 檔
step 3. 用 IntelliJ 開啟舊檔打開 demo
執行看看:
- 打開
\src\main\kotlin\com\example\demo
- 第九行旁邊有一個綠色的三角形按鈕,按下去 Run 'DemoApplication.kt'
step 4. 做個 HelloController
- com.example.demo 右鍵 new > file > HelloController.kt
- 貼上這一段 code (如果 package name 命名不一樣的話記得要改)
- 重新 build
- 瀏覽器確認有 /hello 這個路由
package com.example.demo
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RestController
@RestController
class HelloController{
@GetMapping("/hello")
fun sayHello() = "Hello Spring Boot Kotlin!"
}
想起當年從安裝 tomcat 開始學,安裝完就不想寫程式了呢~