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

Getting Started with Spring Boot: A Spring Boot Setup Tutorial

July 1, 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 Use JPA 2.1 in JBoss EAP 6.x

January 18, 2025 By Prasanna Manjunatha

JBoss EAP 6.x is based on JEE 6. But as JPA 2.1 is part of the JEE 7 Spec, it will not be possible to directly deploy applications built using JPA 2.1 in JBoss EAP 6.x. However, with the following workaround we can make this possible. You need to include a ‘jboss-deployment-structure.xml’ with the following […]

How to Create Cron Expression for Quartz Scheduler

January 18, 2025 By Prasanna Manjunatha

Quartz is one of the most widely used enterprise job scheduler in Java applications. It has got an open source .Net variant as well. As quartz makes use of Cron Expression to schedule the jobs, it’s very important that we learn to create cron expressions to meet our scheduling requirements. Cronmaker.com is one such utility […]

How to Create Immutable Objects in Java

January 13, 2025 By Prasanna Manjunatha

  In Java programming, creating immutable objects is quite important, particularly in multi-threaded applications where data consistency and thread safety are paramount. Immutable objects, once created, cannot be altered. This immutability can lead to simpler, more robust code that is easier to understand and maintain. In this blog post, we will explore the concept of […]

Wildcard SSL Certificate Configuration in JBoss

January 12, 2025 By Prasanna Manjunatha

Securing the webtraffic or connection to the servers is of paramount interest for any one who wants to prevent any kind of malicious attacks on their servers. One of the most popular ways to secure the web traffic is to use https. In order to enable https, we have to buy a SSL digital certificate […]

How to Check Free Disk Space in Java

January 9, 2025 By Prasanna Manjunatha

For those who manage file systems and storage in Java applications, monitoring disk space is crucial. Java provides straightforward ways to check free disk space, ensuring that applications handle storage efficiently and avoid issues related to insufficient space. This article will walk you through how to check free disk space in Java, complete with the […]

Java Null Check Using Optional: Enhancing Code Reliability and Readability

January 5, 2025 By Prasanna Manjunatha

Handling null values effectively in Java is crucial for developing robust applications. The introduction of the Optional class in Java 8 marked a significant improvement in how Java developers can manage nullability in a more functional style. This guide will explore the Optional class, how to utilize it for null checks, and its benefits over […]

How to configure JaCoCo for Code Coverage in Spring boot Applications

January 4, 2025 By Prasanna Manjunatha

Code coverage is a crucial aspect of software development that helps to measure the effectiveness of testing and ensures the quality of the codebase. In this comprehensive guide, we will explore the concept of code coverage specifically for Springboot applications and delve into the implementation of JaCoCo, a popular code coverage tool for Java projects. […]

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

January 1, 2025 By Prasanna Manjunatha

Managing collections efficiently is crucial in Java, especially when ensuring they are not null or empty before performing operations. This guide will walk you through how to check if a collection is null or empty using both the Apache Commons Collections and Spring Framework utilities, along with native Java approaches. Before manipulating collections—such as lists, […]

Currently Trending

  • Five minutes guide for creating SOAP web service in Java using Axis2
  • How to Extract Private Key from Java Keystore (.JKS) or .P12 File
  • HTTP Redirection Configuration in JBoss
  • Top 5 Java Code Coverage Tools
  • How to Generate MD5 Hash in Java
  • How to Update MySQL Collation for all tables in the schema
  • MySQL Scheduler Overview with Examples
  • How to configure JaCoCo for Code Coverage in Spring boot Applications
  • Java Null Check Using Optional: Enhancing Code Reliability and Readability
  • How to Solve Maven invalid CEN header error

Connect with us

  • Facebook
  • GitHub
  • LinkedIn
  • Twitter

TAG CLOUD

Axis2 Code Coverage CodeCoverage 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 Springboot Spring boot SQL Tools Tutorial web service

All time Popular Posts

  • 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 Solve Maven invalid CEN header error
  • How to configure JaCoCo for Code Coverage in Spring boot Applications
  • How to Send Email In Java
  • How to Create Cron Expression for Quartz Scheduler
  • Getting Started with Spring Boot: A Spring Boot Setup Tutorial
  • How to Password Protect a PDF File using Java
  • How to Deploy Exploded WAR file in JBoss EAP Server
  • Automate Audit Fields in Spring Boot with MyBatis: A Generic Solution for CRUD Operations

Copyright © 2026 MyJavaCode.com