In this tutorial we will go over different ways we can join Java Arrays. If you have any of below questions then you are at right place: How can I concatenate two arrays in Java?How to Merge Two …
pom.xml • Tag Archive
Maven is a build automation tool used primarily for Java projects. Pom.xml is a key file for your Maven Project. On Crunchify, we do have list of tutorials on how to use pom.xml for your Production ready Software.
ArrayBlockingQueue Vs. Google Guava Non-Blocking EvictingQueue Example
Concurrency utilities are very amazing in Java. java.util.concurrent package contains lots of utilities which we could use in number of different ways. In this tutorial we will go over …
Read Article about ArrayBlockingQueue Vs. Google Guava Non-Blocking EvictingQueue Example →
Missing Maven settings.xml file for your Eclipse? What if you need two settings.xml files for Work and Personal Workspace?
Are you running multiple Eclipse Environments on your developer workstation? Or on your laptop? I do. Let's consider a scenario with two different Eclipse workspace with different custom maven …
Use “maven-shade-plugin” to Create just 1 Executable jar with all required Dependencies in it for your Java or Spring Project?
Just create one Crunchify.jar file with all dependencies inside it :) Last week I wrote a tutorial on how to use maven-resources-plugin, maven-dependency-plugin & maven-jar-plugin to generate …
What is pom.xml (Project Object Model)? Sample pom.xml for you to use in your Dynamic Web Project (Java / J2EE)
What is pom.xml file? POM means Project Object Model. It is a fundamental unit of work in Maven. pom.xml file contains all configuration, dependencies, plugin integration and project setup …
How to create New simple Maven Project in Eclipse without archtype – Detailed steps included
Maven and Java is a best combination you could get for your production project in present time. I don't see any other combination which best works. Why Maven? What are the advantages using Maven with …
How to fix Cannot change version of project facet Dynamic Web Module to 3.0 Error in Eclipse
Today while converting Dynamic Web Project to Maven project I got below Error: Cannot change version of project facet Dynamic Web Module to 3.0 One or more constraints have not been satisfied What …
Cannot be Read or is Not a Valid ZIP file – How to fix Maven Build Path Error with corrupted .jar file
Yesterday I was setting up my new Macbook Pro 15inch with all my Crunchify Tutorials. I usually use Maven all over the place. Without maven pom.xml file I can't even start working on my project. Maven …
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console
Maven dependencies are magic. Are you running Maven Java Project and using log4j into your project? Have you added below to your project's pom.xml file? Probably the easiest way to get logging …
How to Create a .war file using Eclipse Maven Plugin? Apache ‘maven-war-plugin’ usage
Maven is pretty amazing, isn't it? Well - for me at least I love using Maven in my daily Java Development practice. Maven is nothing but a plugin execution framework; all work is done by …
Spring MVC: How to Declare a Bean in Spring Application?
Declaring a bean In Spring MVC framework, to declare a bean, simply annotate a method with the @Bean annotation. When JavaConfig encounters such a method, it will execute that method and register the …
Read Article about Spring MVC: How to Declare a Bean in Spring Application? →