MyJavaCode.com

Tutorial and How to Guide on Java Programming. Topics covered include Java Programming Language - Core Java, Spring, Webservices, REST, Hibernate, Maven and Microservices.

  • Core Java
  • REST API’s
  • Spring boot
  • Hibernate
  • Interview Questions
  • Contact Us
  • Projects
  • Offerings

How to Solve error parsing lifecycle processing instructions

May 12, 2025 By Prasanna Manjunatha

Anyone who has worked on a Maven project knows that build and dependency management can sometimes throw curveballs your way. One such issue is the “Error Parsing Lifecycle Processing Instructions” error. This error can stop your project build process dead in its tracks, and today, we’re going to look at how to resolve it.   […]

Automate Audit Fields in Spring Boot with MyBatis: A Generic Solution for CRUD Operations

May 10, 2025 By Prasanna Manjunatha

In modern web applications, maintaining audit trails for data changes is crucial for tracking who made changes and when. If you’re building a Spring Boot application with REST APIs, using MyBatis for data persistence, and MSSQL as your database, you might face the challenge of managing common audit fields like createdDate, createdBy, updatedDate, and updatedBy […]

Externalizing MyBatis SQL Queries in a Spring Boot Application

May 8, 2025 By Prasanna Manjunatha

As applications grow in complexity, managing SQL queries directly within the codebase can become cumbersome and error-prone. MyBatis, a popular persistence framework, offers several options for managing SQL statements in a Spring Boot application. This blog post explores how to externalize SQL queries, including the various methods supported by MyBatis for writing and organizing SQL […]

Top 5 Java Code Coverage Tools

May 6, 2025 By Prasanna Manjunatha

In the rapidly progressing world of Java development, ensuring top-tier quality and resilience of software has never been more crucial. Code coverage stands out as a pivotal metric in this arena, and the tool you pick can profoundly influence the trustworthiness of your software. Let’s deep dive into the top 5 Java code coverage tools […]

Getting Started with Spring Boot: A Spring Boot Setup Tutorial

May 4, 2025 By Prasanna Manjunatha

Spring Boot has become the go-to framework for Java developers looking to create robust and efficient applications. This Spring Boot setup tutorial will guide you through setting up your development environment with Maven and IntelliJ, ensuring you have everything you need to start building Spring Boot projects seamlessly. This is our second article in our […]

Java API to get Domain Authority and other Moz URL Metrics

May 2, 2025 By Prasanna Manjunatha

Moz is one of the popular platform offering various tools and services for Search Engine Optimization. Keyword Research, Link Building, SEO Audit and Rank Tracking are some of the key services offered by Moz. Services provided by Moz are extensively used by freelancers and Digital marketing companies to analyze and track the performance of websites […]

How to Extract Private Key from Java Keystore (.JKS) or .P12 File

April 30, 2025 By Prasanna Manjunatha

Extracting a private key from a Java Keystore (.JKS) or a .P12 (PKCS12) file can be necessary when you need to migrate certificates, configure TLS for applications, or integrate with third-party systems. However, Java’s keytool does not support exporting private keys directly. In this guide, we will explore different methods to extract the private key […]

How to Send Email In Java

February 12, 2025 By Prasanna Manjunatha

The need to send Email in Java would be one of the most common requirements in many of the Java applications. Fortunately, the Java Mail API makes this possible with very less effort. The Java Mail API is not part of the JDK, it is an optional package. Oracle provides the reference implementation of the Java […]

How to Map Composite Key in Hibernate

January 30, 2025 By Prasanna Manjunatha

Composite key (or Composite Primary Key) cannot be mapped directly in hibernate like how we map the normal primary key’s using @Id annotation attribute. We will have to use @Embedabble & @EmbeddedId annotation attributes to map composite key. JaCoCo Code Coverage in Springboot Applications : A Comprehensive Guide How to Password Protect a PDF File […]

How to Deploy Exploded WAR file in JBoss EAP Server

January 26, 2025 By Prasanna Manjunatha

In the realm of Java EE application servers, JBoss EAP (Enterprise Application Platform) stands as a market leader. Whether you’re optimizing for development or production, understanding how to deploy applications is crucial. Among deployment formats, an ‘exploded’ WAR (Web Application Archive) file offers some advantages like hot deployment and easier debugging. In this guide, we’ll […]

  • 1
  • 2
  • 3
  • Next Page »

Currently Trending

  • How to Solve Maven invalid CEN header error

  • How to Extract Private Key from Java Keystore (.JKS) or .P12 File

  • How to check whether a Collection is Null or Empty in Java

  • How to Update MySQL Collation for all tables in the schema

  • Five minutes guide for creating SOAP web service in Java using Axis2

  • How to Deploy Exploded WAR file in JBoss EAP Server

  • Automate Audit Fields in Spring Boot with MyBatis: A Generic Solution for CRUD Operations

  • How to Configure Cobertura for Code Coverage in Spring boot Applications

  • Java API to get Domain Authority and other Moz URL Metrics

  • Externalizing MyBatis SQL Queries in a Spring Boot Application

Connect with us

  • Facebook
  • GitHub
  • LinkedIn
  • Twitter

TAG CLOUD

Axis2 CodeCoverage Code Coverage cron expression Data Structure Frameworks Hashing HashMap Hibernate IntelliJ java Java Mail jboss jpa 2.1 Maven MyBatis MySQL PDF Quartz REST REST API SOAP Spring boot Springboot SQL Tools Tutorial web service

All time Popular Posts

  • How to Solve Maven invalid CEN header error

  • How to check whether a Collection is Null or Empty in Java

  • How to Extract Private Key from Java Keystore (.JKS) or .P12 File

  • How to configure JaCoCo for Code Coverage in Spring boot Applications

  • How to Deploy Exploded WAR file in JBoss EAP Server

  • How to Generate MD5 Hash in Java

  • Automate Audit Fields in Spring Boot with MyBatis: A Generic Solution for CRUD Operations

  • How to Check Free Disk Space in Java

  • Five minutes guide for creating SOAP web service in Java using Axis2

  • Java Null Check Using Optional: Enhancing Code Reliability and Readability

Copyright © 2025 MyJavaCode.com