Tag: java
All the articles with the tag "java".
Building a Backend for an Online Marketplace
Published: at 11:00 PMBackend architecture walkthrough of the Marketplace API, showcasing Java and Spring Boot proficiency in managing online marketplace advertisements, including user authentication, dynamic ad creation, and detailed API documentation using Swagger and Javadoc.
TIL Spring Data JPA: Making Database Stuff Easier
Published: at 10:00 PMSpring Data JPA simplifies database tasks, reducing boilerplate code with JpaRepository and enabling clear custom queries through intuitive method naming.
TIL Database Transactions and ACID Principles!
Published: at 10:00 PMDatabase transactions and the crucial ACID properties (Atomicity, Consistency, Isolation, Durability) are explored to ensure data integrity and reliability in real-world applications, using a practical example of money transfer between bank accounts.
Custom Exceptions in Java
Published: at 10:00 PMIn Java programming, custom exceptions act as personalized safety nets, allowing the creation of tailored error-catching mechanisms to handle unique situations beyond the scope of built-in exceptions, enhancing code clarity and maintainability.
TIL ArrayList vs. LinkedList in Java: Choosing the Right Tool for the Job
Published: at 10:00 PMList containers in Java, like ArrayList and LinkedList, offer different ways to manage and organize collections of elements, providing options based on speed and flexibility.
TIL Discovering Java's OOP Magic: Abstract and Interface Made Simple
Published: at 10:00 PMAbstract and interface concepts in Java provide blueprints for diverse character behaviours and establish harmonious code contracts, offering structure and flexibility in programming.