UserController.java 426 字节
Newer Older
M
SSO  
ManongJu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.microservice.skeleton.resource.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * Created by Mr.Yangxiufeng on 2017/12/29.
 * Time:9:23
 * ProjectName:Mirco-Service-Skeleton
 */
@RestController
public class UserController {

    @GetMapping(value = "getUser")
    public String getUser(){
M
ManongJu 已提交
16
        return "order";
M
SSO  
ManongJu 已提交
17 18 19
    }

}