Saturday, August 17, 2013

Java Persistency API 2.0 (JPA): Hibernate JPA Metamodel Generator With Eclipse and Maven

One of the key features introduced in JPA 2.0 is the Criteria API, which brings a unique capability to the Java language: a way to develop queries that a Java compiler can verify for correctness at compile time. The Criteria API also includes mechanisms for building queries dynamically at run time. In...

Thursday, August 15, 2013

Integrate Maven with Eclipse

While developing applications with Eclipse, if you have to move from Eclipse to Command Prompt, then after sometime you will feel irritated. That is why it is good to integrate Maven with Eclipse. Here I will share my experience how I Integrated Maven with Eclipse. Hope it will help you guys: Tools Needed: 1. Eclipse. 2. Maven 1. Installing Eclipse: You can go to Eclipse's website and download...

Wednesday, August 14, 2013

How to Install and Configure Maven on Windows

Maven is a build automation tool used primarily for Java projects. Maven serves a similar purpose to the Apache Ant tool, but it is based on different concepts and works in a different manner. I don't want to get into details about Maven here. Let's focus :-) I...