在Spring Boot中,可以使用@RequestMapping
、@GetMapping
、@PostMapping
等注解來指定Controller的URL。以下是一些常用的例子:
@RequestMapping
注解指定URL:@RestController
@RequestMapping("/api")
public class MyController {
@RequestMapping("/hello")
public String hello() {
return "Hello, world!";
}
}
@GetMapping
注解指定GET請求的URL:@RestController
@RequestMapping("/api")
public class MyController {
@GetMapping("/hello")
public String hello() {
return "Hello, world!";
}
}
@PostMapping
注解指定POST請求的URL:@RestController
@RequestMapping("/api")
public class MyController {
@PostMapping("/hello")
public String hello() {
return "Hello, world!";
}
}
通過以上方式可以靈活地指定Controller的URL,并且可以支持不同類型的HTTP請求。