Store emoji ( Unicode characters ) in MySQL DB using Spring boot
This blog post will show us how to persist and retrieve emoji ( or any Unicode ) characters to/from MySQL using a spring boot application. If we try to save an emoji ( May...
This blog post will show us how to persist and retrieve emoji ( or any Unicode ) characters to/from MySQL using a spring boot application. If we try to save an emoji ( May...
In the previous blog post, we integrated SNS directly from the Spring cloud application. We are able to receive messages from SNS now as HTTP callbacks. But this is not an ideal situation as...
AWS SNS ( Simple Notification Service ) is a managed messaging service that can be used in applications for publishing and subscribing to topics ( a channel ). Initially started as a means to...
Security and data privacy is paramount for any modern cloud application handling a customer’s PII ( Personally Identifiable Information ) data such as name, email, mobile, social security, etc. With the increased number of...
There was an advisory ( CVE-2021-44228 ) on a critical vulnerability found on log4j2 ( the most common logging library used in Java applications worldwide developed by Apache Software Foundation ). This vulnerability is...
In this part, we will see about the web layer for our web application and how to write the tests for the controllers using MockMvc, and also integration testing without any mocks. If you...