两个SpringBoot项目之间调用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个SpringBoot项目之间调用相关的知识,希望对你有一定的参考价值。
参考技术A 上图片显示出一个springboot_1的入参和反参,我们只要在springboot_2项目中编写如下类的方法即可调用springboot_1的接口。两个项目之间的调用主要用到RestTemplate这个类,url表示的是另一个项目的访问参数。然后需要调用的方法直接调用该方法就行。
springboot项目调用webservice客户端 问题
springboot项目调用webservice客户端。 项目正常启动调用webservice客户端接口没问题。当项目热启动后调用同样webservice客户端接口报错
java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load [META-INF/services/org.apache.axis.EngineConfigurationFactory]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
以上是关于两个SpringBoot项目之间调用的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot:如何使用 WebClient 而不是 RestTemplate 来执行非阻塞和异步调用