小编给大家分享一下SpringBoot内部服务调用方式有哪些,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!Eureka注册的服务之间互相调用1.请求方启动类添加注解,扫描Eureka 中的全部服务@springBootAp
小编给大家分享一下SpringBoot内部服务调用方式有哪些,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
启动类添加注解,扫描Eureka 中的全部服务
@springBootApplication@EnableEurekaClient@EnableFeignClientspublic class LoginServiceApplication { public static void main(String[] args) { new SpringApplicationBuilder(LoginServiceApplication.class).WEB(true).run(args); } }
pom.xml 添加包 (版本号 根据实际选择)
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> <version>1.4.6.RELEASE</version></dependency>
创建接口类
@FeignClient(name="hello-service") //spring service namepublic interface FeignVehicle { @RequestMapping(value="/hello", method = RequestMethod.GET) @ResponseBody public List<Map> hello(@RequestParam Map<String,String> params);}
实现类注入此接口类
@AutowiredFeignVehicle feignVehicle;
使用的时候直接按照正常调用方式即可
Map<String,String> map = new HashMap<String, String>();feignVehicle.hello(map);
跨服务调用的时候出现token信息取不到,在发送方添加拦截器
@Configurationpublic class FeignConfiguration { @Bean public RequestInterceptor requestInterceptor() { return new RequestInterceptor() { @Override public void apply(RequestTemplate template) { ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder .getRequestAttributes(); httpservletRequest request = attributes.getRequest(); //当前服务token template.header("Authorization","Bearer " + request.getSession().getId()); //template 接收请求方token } }; }}
请求 启动类
@SpringBootApplication@EnableEurekaClientpublic class HelloServiceApplication { public static void main(String[] args) { new SpringApplicationBuilder(HelloServiceApplication.class).web(true).run(args); } }
请求Controller
@Controller@RequestMapping("/hello")public class HelloController { @RequestMapping(value="/hello",method = RequestMethod.GET) @ResponseBody public List<Map> hello(@RequestParam Map<String, String> queryParam) { return null; }}
product
服务作为服务端,提供了一个 对外通信Fegin接口 ProductClient,放在了com.imooc.product.client jar包下
order
服务作为客户端,直接引用上面的jar,使用 ProductClient ,启动主类后报下图错误:
多模块化时,应该在order主类上添加下面圈出来的注解,这样启动后就能扫描这个包。
看完了这篇文章,相信你对“Springboot内部服务调用方式有哪些”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网精选频道,感谢各位的阅读!
--结束END--
本文标题: Springboot内部服务调用方式有哪些
本文链接: https://lsjlt.com/news/324746.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0