Skip to content

Tag: spring-boot

Spring batch job runs automatically

I’m using a spring batch to read a CSV file and write it to the DB, using the controller trigger. On starting the application, before I hit from the browser url, I see the print statements from my reader, on the startup. Although it doesn’t print it for my processor or writer, which are in separat…

How to use ElasticSearch JSON DSL in Java?

I’m working on a springboot project and having some trouble with ElasticSearch. The user will put some JSON-format elasticsearch DSL query strings in the database and they are black-box to me. What I need to do is get the query strings and use them so search information in elasticsearch. In python, the …

Make Redis as optional

I am using spring boot with Redis.Redis is running as Docker container Redis is a memory DB, if it finds data in Redis based on the key, it retrieved from Redis otherwise go into actual db call. when Redis is running, code works fine. but sometimes for any reason, if Redis is down, I am getting exception Redi…

Upload a file using Java 11 HttpClient to SpringBoot Server

My client upload method: My Spring Boot method that receives the file: The current error: What kind of headers can I add to ensure my Spring Boot server receives the file without errors? Answer MultipartException: Current request is not a multipart request This is telling you what’s wrong. In your code:…