Thiago Leão Moreira
Thiago Leão Moreira
I implemented a TimeSeries that is connector to a database using JDBC
yes, I used the RestTemplate from Spring Framework to upload the large files, I ended up with two clients implementations 🤦
Looks like the support for large file isn't there. I'm facing a similar issue with pure OpenFeign described here https://github.com/OpenFeign/feign-form/issues/101 Do you guys found a workaround to this? @Toparvion @mulderga-cgi...
Thanks @koziolk for the fast response. I was thinking to do the same approach and have two clients for the short term.
@yegor256 Right now it is tough for me but I could give a try in a couple of months.
The goal is to make the TelegramBots jars to be OSGI enabled jars. To have that it need to have extra entries into the MANIFEST.MF file.
hey @sradityaa , check the SpringBoot example below. ``` import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; @RestController...