Skip to content

Tag: spring-boot

How to call class from another module in SpringBoot, Java

I have a Spring Boot multi-module gradle project, and I am trying to call class from another module. I have a HttpDataClient.java class that I would like to call in DataResolver.java class in another module. HttpDataClient.java So, this class should return some response data from Data service. After I would l…