SZH
2022-06-22 e1f869f20951152ed4f5a3c66cda3928dc4ecdf1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.gkhy.safePlatform.emergency.controller;
 
import com.gkhy.safePlatform.account.rpc.apimodel.NameService;
import org.apache.dubbo.config.annotation.DubboReference;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("/emgc")
public class Test {
 
    @DubboReference(check = false)
    private NameService nameService;
 
//    private Logger logger = LogManager.getLogger(Test.class);
 
 
    @RequestMapping(value = "/t/rpc",method = RequestMethod.GET)
    public Object testRpc(String id){
        String resp = nameService.sayName(id);
        return resp;
    }
}