On Crunchify, we have written so far 500+ Java and Spring MVC technology related tutorials. Learning new stuff never bored me. I like learning new stuff every day and I believe it's the same for my …
IntelliJ IDEA – new UI is awesome. How to enable it?
At Crunchify, at this moment we are using IntelliJ IDEA 2022.3 (Ultimate Edition) for all of our Java projects. Recently after upgrading to latest version, we noticed new UI option under …
Read Article about IntelliJ IDEA – new UI is awesome. How to enable it? →
Dynamic Spline HighChart Example with Multiple Y Axis
Highcharts is a charting library written in pure HTML5/JavaScript, offering intuitive, interactive charts to your website or web application. Highcharts currently supports line, spline, area, …
Read Article about Dynamic Spline HighChart Example with Multiple Y Axis →
How to Check if a String Contains a Substring? indexOf(), contains() and custom implementation
I have two Strings: str1 and str2. How to check if str2 is contained within str1? You can definitely use Java's own .contains() method. In Java, there are several ways to check if a string …
WordPress Menu: An Essential Element of Your Website
WordPress Menu: An Essential Element of Your Website A menu is a crucial element of any website. It serves as a navigation tool that helps visitors access different sections of your site easily. In …
Read Article about WordPress Menu: An Essential Element of Your Website →
How to Refresh DIV Content Without Reloading Page using jQuery?
You can refresh the content of a DIV element without reloading the entire page using jQuery by making an AJAX call to a server-side script that returns the updated content. Example-1: Step-1. …
Read Article about How to Refresh DIV Content Without Reloading Page using jQuery? →
How to Run Multiple Tomcat Instances on One Server?
I'm sure you must have faced one of below question while developing Dynamic Web Project in past. If yes, then you are at right place.. Let's understand basic first To run multiple Tomcat …
Read Article about How to Run Multiple Tomcat Instances on One Server? →
Java Properties File: How to Read config.properties Values in Java?
.properties is a file extension for files mainly used in Java related technologies to store the configurable parameters of an application. They can also be used for storing strings …
Read Article about Java Properties File: How to Read config.properties Values in Java? →
How to Find Information On Any Domain Name or Website – Java Whois Example
This is a simple Java Example which uses Apache Commons Net library to pull all Whois data. The WhoisClient class implements the client side of the Internet Whois Protocol defined in RFC 954. …
Read Article about How to Find Information On Any Domain Name or Website – Java Whois Example →