Using Apache as a Reverse Proxy for Spring Boot Embedded TomcatMarch 18, 2017·Updated: June 3, 2019·2 minsapache tomcatThe article explains how to configure Apache as a reverse proxy for a Spring Boot application running on embedded Tomcat.
The Developer's Guide to Cookies 🍪October 13, 2016·Updated: February 21, 2025·4 minscookies httpCookies are a fundamental part of the web so understanding how they work is important for devs."
Why doesn't a static method call on a null object reference generate a NullPointerException?August 1, 2016·3 minsjavaWe explore why static method calls on a null object reference don’t produce an NPE.
Use Character Arrays to Store Sensitive Text Data in JavaJuly 18, 2016·1 minjavaStoring passwords in Java String objects is risky due to immutability and unpredictable garbage collection, so using a char[] allows explicit memory clearing for better security.
Getting Started with AWS SDK for PHPMarch 4, 2016·2 minsawsA guide to installing and using the AWS SDK for PHP, including setup with Composer and examples for interacting with AWS services like S3 and EC2.