Flux concat is not working after spring upgrade to 3.2.3
”’
return Flux.concat(lookupSmsTemplate.transferTo(lookupSmsTemplateFile),lookupSMSVariables.transferTo(lookupSMSVariablesFile))
.then(importService.previewSmsTemplateImport(clientId,
spaceKey,
new FileSystemResource(lookupSmsTemplateFile),
new FileSystemResource(lookupSMSVariablesFile)))
.map(mapper::map)
.doFinally($ -> FileUtils.deleteQuietly(lookupSmsTemplateFile.toFile()))
.doFinally($ -> FileUtils.deleteQuietly(lookupSMSVariablesFile.toFile()));
”’
Mocking multipart request in spring is not received as multipart
So i have this test
Spring boot custom deserialzer exception gets wrapped into MethodArgumentNotValidException
REST POST endpoint receives a base64 string in the body. This body needs to be converted to a object. For that we have a custom Converter<String, CustomObject>.
MultiValueMap remove(HttpHeaders.CONTENT_DISPOSITION) not working
In my springboot application, I use MultiValueMap of org.springframework.util
to send a multipart/related data.
How to exclude classed from @ImportAutoConfiguration in spring boot test
Let’s have such configuration class:
i need an api that gives all district in tamil nadu and also its sub areas
I cant find the Api please help me
How to parse params with [] in url to create a GET request endpoint SpringBoot3?
I am working on a decommission project which need to create an exactly identical endpoint matches with a legacy endpoint. The legacy endpoint is written by PHP which is like this:
Spring Boot Profile not override property
I have a Spring Boot application 3.1.3 using two yml profiles
how is Time formatting done in a Java 8 vs 17 app
I am noticing an interesting case. Old app is in java 8 and uses javax.ws.rs for rest apis. New app is in Java 17 and uses Spring Boot. Rest all is unchanged. We have a variable in a class of java util Date type say receivedDate. Now when we send say “25-01-2017” from postman, in old app it comes as wed Jan 25 00:00:00.0 IST 2017 in old but in new it comes as wed Jan 25 05:30:00.0 IST 2017
SpringBoot application graceful shutdown
I would like to gracefully shut down a SpringBoot application.
The application has multiple ThreadPools and does async processing.
It is connected to the DB and a message bus.