iT邦幫忙

2023 iThome 鐵人賽

DAY 24
0

當你在Java中建立一個簡單的API時,你可以使用Spring Boot框架來實現。以下是一個使用Spring Boot建立的簡單Java API的範例,其中有一個GET請求返回"Hello"字串。

首先,你需要在你的專案中引入Spring Boot相關的依賴。你可以使用Maven或Gradle來管理你的專案依賴。這是一個使用Maven的pom.xml範例:
xml

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/api")
public class HelloController {

    @GetMapping("/hello")
    public String getHello() {
        return "Hello";
    }
}


上一篇
Day 23 什麼是API
下一篇
Day 25 Collection與Map
系列文
菜鳥工程師30天學java基礎30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言