- AWS – Kubernetes on AWS
- Spring Boot Thread Pool
One technique would be to balance thread pool size based on individual demand for hardware. However it might be important to give priority to web clients over requests coming in via JMS and therefore you might balance the pools in that direction. Of course as you rebalance you’ll have to adjust the…
- Spring Boot Security Config
Java Security Configuration Add dependency <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> Add SecurityConfig class import org.springframework.beans.factory.annotation.Autowired; import…
- Springboot Rest File Upload
Posting a request of a DTO which has a file in it. Using @RequestPart Frontend Code Source code on Github
- AWS – Aurora
Aurora is a fully managed relational database engine that’s compatible with MySQL and PostgreSQL. It can deliver up to five times the throughput of MySQL and up to three times the throughput of PostgreSQL without requiring changes to most of your existing applications. When connecting to Aurora…