package cn.xbz.clientfeign;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {

    @Autowired
    private IClientFeign clientFeign;

    @RequestMapping("/test")
    public String test(String user) {
        return clientFeign.hello(user);
    }
}