本文主要是介绍ums调用notice,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
UMS调用notice
在notice中写好代码,用ums调用,notice中用到的实体类,在ums中相同的地方也创建出来,另外在多创建一个client层或者config层
ums调用notice层用两种方法,可以用openfeign和普通方式,普通方式中需要定义url并且创建config类
普通方式 定义url和创建config层
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;@Configuration
public class ApplicationContextConfig {@Bean@LoadBalancedpublic RestTemplate getRestTemplate(){return new RestTemplate();}
}
在要使用的controller中调用 RestTemplate 定义url,url里的是notice注册到eureka中的服务器名字。
public static final String NOTICE_URL="http://NOTICE-SERVICE";@Resourceprivate RestTemplate restTemplate;
也可以使用注解,在client层创建一个接口,加上注解,value中是notice的服务器名字,里面的方法调用的是notice中的方法,方法中的value要和notice中的方法同名。
openfeign注解,client层加注解
添加依赖
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-openfeign</artifactId></dependency>
import four.eneity.User;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;@Component
@FeignClient(value="NOTICE-SERVICE") //微服务名称
public interface NoticeClient {@PostMapping(value="/login")public String selectById(@RequestBody User user);}
在controller中调用client中的方法
import four.client.NoticeClient;
import four.eneity.User;
import four.model.JsonResult;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.*;import javax.annotation.Resource;@CrossOrigin
@RestController
@Slf4j
public class FollowController {@Resourceprivate NoticeClient noticeClient;@PostMapping(value="/login")public JsonResult follow(@RequestBody User user){JsonResult js=new JsonResult();String s=noticeClient.selectById(user);if(s.equals("ok")){js.setCode(0);js.setMsg("成功");js.setData("你好");}else{js.setCode(200);js.setMsg("失败");js.setData("该用户不存在");}return js;}
}
最后打开服务,用postman等工具测试
这篇关于ums调用notice的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!