Databases Reference
In-Depth Information
Component
Description
Version
Spring
Framework
Spring Framework is used to develop modern
enterprise applications with Java.
3.1.2.RELEASE
Database
H2 is an embedded in-memory database that
supports standard SQL and the JDBC API.
1.3.166
We will use the newest available version of our application's other dependencies.
We can download the required dependencies with Maven by declaring them in the
POM file. In order to do this, we have to add the following dependency declarations to
the dependencies section of the pom.xml file:
<!-- Spring Data JPA -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.2.0.RELEASE</version>
</dependency>
<!-- Hibernate -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.1.4.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.1.4.Final</version>
</dependency>
<!-- H2 Database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.166</version>
</dependency>
<!-- BoneCP -->
<dependency>
<groupId>com.jolbox</groupId>
<artifactId>bonecp</artifactId>
<version>0.7.1.RELEASE</version>
</dependency>
Search WWH ::




Custom Search