wuxw7
2017-04-05 678ebc7cc519bcbe42b30edbc6070381ea1016e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.java110.feign.user.smo;
 
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 测试服务
 * Created by wuxw on 2017/4/5.
 */
@RestController
public class TestServiceSMOImpl {
 
    @RequestMapping("/test/sayHello")
    public String sayHello(@RequestParam String param){
        return param+",hello";
    }
}