2 Star 2 Fork 3

还是相信爱过 / feign-springmvc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

#feign-springmvc

支持以springmvc注解描述出要调用的rest接口

example

@RequestMapping(value="/user")
public interface UserService {

    @RequestMapping(value = "/{id}", method = RequestMethod.GET)
    User selectByPrimaryKey( @PathVariable("id") Integer id);

    @RequestMapping(value = "/list", method = RequestMethod.GET)
    List<User> list();

    @RequestMapping(value = "/{id}", method = RequestMethod.DELETE)
    int deleteByPrimaryKey(@PathVariable("id") Integer id);

    @RequestMapping(method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
    int insert(@RequestBody User user);

    @RequestMapping(method = RequestMethod.PUT, consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
    int updateByPrimaryKey(@RequestBody User user);



}


UserService commentService =SpringMvcFeign.target(UserService.class, "http://localhost:8080");

空文件

简介

可以用springmvc 注解描述要调用的rest服务. 展开 收起
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuyu15255872976/feign-springmvc.git
git@gitee.com:wuyu15255872976/feign-springmvc.git
wuyu15255872976
feign-springmvc
feign-springmvc
master

搜索帮助