ruoyi的spring cloud项目详解
在RuoYi的Spring Cloud项目中,服务间调用通常使用Feign进行。以下是一个简单的Feign客户端示例代码:
package com.ruoyi.system.feign;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import com.ruoyi.common.core.domain.R;
@FeignClient("ruoyi-auth") // 指定远程服务名称
public interface RemoteUserService {
@GetMapping("/user/checkUserNameUnique")
R<Boolean> checkUserNameUnique(@RequestParam("userName") String userName);
}
在这个示例中,我们定义了一个RemoteUserService
接口,使用@FeignClient
注解指定了远程服务的名称(在Spring Cloud中服务间通信通常通过服务名称进行)。然后定义了一个使用@GetMapping
注解的方法,该方法用于检查用户名的唯一性。
在RuoYi中,服务间调用通常会返回R<T>
这样的包装类型,其中R
是一个泛型类,用于封装服务响应,包含状态码、消息以及数据。使用Feign进行服务间调用时,通常需要定义一个返回类型与远程服务的响应类型相匹配。
评论已关闭