在Spring Boot中使用Http Invoker

孤街浪徒 提交于 2020-01-17 20:28:31

https://blog.csdn.net/qq_34741165/article/details/88146067

 

在Spring 中使用Http Invoker在官方文档中已经描述的很清楚了,那么,在Spring Boot中怎么使用呢?

首先我们定义一个接口:

public interface ITestService {
    String test(String hello);
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!