wuxw7
2017-09-11 2544b536f69d00717fe4eaffd1760169d4797871
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.java110.entity.test;
 
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";
    }
}