skip to Main Content

How to access localhost from within docker image

I have B application which calls A application. Here are the source code for them: A application : @SpringBootApplication @RestController @Slf4j public class AApplication { public static void main(String[] args) { SpringApplication.run(AApplication.class, args); } @GetMapping("call_a") public double callA() { log.info("calling…

VIEW QUESTION

Spring Data mongodb like query

I want to make a text search case insensitive with regex query with spring-data mongo . For example in SQL: SELECT * FROM Customers WHERE CustomerName LIKE 'a%'; How can i make this query with spring-data mongo using MongoRepository Query…

VIEW QUESTION
Back To Top
Search