此版本仍在开发中,尚未被视为稳定版本。最新的稳定版本请使用 Spring Framework 6.1.13spring-doc.cn

此版本仍在开发中,尚未被视为稳定版本。最新的稳定版本请使用 Spring Framework 6.1.13spring-doc.cn

Spring WebFlux 提供了一个基于 Comments 的编程模型,其中 和 Components 使用 Comments 来表示请求映射、请求输入、 处理异常等。带 Comments 的控制器具有灵活的方法签名和 不必扩展基类,也不必实现特定的接口。@Controller@RestControllerspring-doc.cn

下面的清单显示了一个基本示例:spring-doc.cn

@RestController
public class HelloController {

	@GetMapping("/hello")
	public String handle() {
		return "Hello WebFlux";
	}
}
@RestController
class HelloController {

	@GetMapping("/hello")
	fun handle() = "Hello WebFlux"
}

在前面的示例中,该方法返回 a to be written to the response body.Stringspring-doc.cn