YYadrsinyadrs.hashnode.dev·Jun 24 · 7 min readEC2 vs ECS for Spring Boot Deployment — A Practical Guide to Choosing Your AWS ModelBuilding a Spring Boot application is only half the journey. At some point, every backend project reaches the next question: Where should this application actually run? If you are deploying on AWS, 00
YYadrsinyadrs.hashnode.dev·Jun 21 · 5 min readSpring Boot Project Structure in Practice: Controllers, DTOs, Exceptions, and Beyond InitializrSpring Initializr is one of the best tools in the Java ecosystem. It solves the first problem every Spring Boot developer has: "How do I create a working Spring Boot application quickly?" You select00
YYadrsinyadrs.hashnode.dev·Jun 17 · 6 min readSpring Boot Docker in Practice: Multi-Stage Builds, Layer Caching, and Production ConfigurationRunning a Spring Boot application locally is straightforward. But production introduces different requirements. A real deployment usually needs: consistent runtime environments database containers f00
YYadrsinyadrs.hashnode.dev·Jun 14 · 6 min readSpring Security OAuth2 + JWT Refresh Tokens — What Production Actually Looks LikeMost Spring Boot applications eventually need authentication. And many teams rebuild the same foundation every time. Add a login endpoint. Generate a token. Protect some APIs. Then production arrives 00
YYadrsinyadrs.hashnode.dev·Jun 12 · 9 min readGDPR in Spring Boot: Data Erasure, Consent Records, and Audit Logging in PracticeMost GDPR articles stop at cookie banners and privacy policies. That is the visible layer. The part users see. The harder part is what happens inside your backend — how you store personal data, how yo00