What is an interface and what are the advantages of making use of them in Java?

"Programming for interfaces than implementation" is very popular principle in java programming and design pattern. Here I am going to…

8 years ago

Maven Project Dependencies

For solving external libraries dependency problem Maven provides dependency management functionality for adding external libraries dependency to the project by…

8 years ago

Maven Example Hello World

Here we are creating simple Maven Example Hello World using command prompt by executing the archetype:generate command of mvn tool.First…

8 years ago

Maven Settings File

There are two setting files maven have. These setting files have information about maven local repository, active build profile etc.The…

8 years ago

Maven Directory Structure

Maven Directory Structure Maven has own standard for directory structure to create in a project. So we no need specify…

8 years ago

Maven Pom.xml File

POM is short form of Project Object Model. Maven POM file in the project describe the resources of the project.…

8 years ago

Maven Repository

Maven Repository is simply directory or folder where all jars, plugins or any other projects related artifacts are available and…

8 years ago