| 123456789101112131415161718192021222324252627 | package org.jeecg.modules.demo.cloud.provider;import org.jeecg.common.api.vo.Result;import org.jeecg.modules.demo.cloud.service.JcloudDemoService;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.RestController;import javax.annotation.Resource;/** * feign服务端接口 */@RestController@RequestMapping("/test")public class JcloudDemoProvider {    @Resource    private JcloudDemoService jcloudDemoService;    @GetMapping("/getMessage")    public Result<String> getMessage(@RequestParam String name) {        return jcloudDemoService.getMessage(name);    }}
 |