溫馨提示×

springboot怎么指定controller的url

小億
155
2024-03-18 10:15:47
欄目: 編程語言

在Spring Boot中,可以使用@RequestMapping、@GetMapping、@PostMapping等注解來指定Controller的URL。以下是一些常用的例子:

  1. 使用@RequestMapping注解指定URL:
@RestController
@RequestMapping("/api")
public class MyController {

    @RequestMapping("/hello")
    public String hello() {
        return "Hello, world!";
    }
}
  1. 使用@GetMapping注解指定GET請求的URL:
@RestController
@RequestMapping("/api")
public class MyController {

    @GetMapping("/hello")
    public String hello() {
        return "Hello, world!";
    }
}
  1. 使用@PostMapping注解指定POST請求的URL:
@RestController
@RequestMapping("/api")
public class MyController {

    @PostMapping("/hello")
    public String hello() {
        return "Hello, world!";
    }
}

通過以上方式可以靈活地指定Controller的URL,并且可以支持不同類型的HTTP請求。

0