之前发布过在 springboot 中基于 jaxws 发布 WebService 的文章,是基于注解式的(cxf封装过的starter)。
本文是基于 webflux 框架下的代码工程中,用另外一种方式发布 webservice。
创建一个基础的 springboot 工程,选择 webflux 方式(或者手工引入 webflux 依赖)。
org.springframework.boot
spring-boot-starter-webflux
创建一个 webflux 的 Controller,启动服务确定可以正常访问(http://localhost:8080/demo/show)。
@RequestMapping("/demo")
@RestController
public class DemoController {
@RequestMapping(value = "/show")
public Mono show() {
return Mono.just(&
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)