Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cd51d82ed137eb2b97fe80f8a3fd4f9967605de6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Hibernate - Relational Persistence for Idiomatic Java
=====================================================
version 3.2.5, July 31, 2007

Instructions
------------
Unzip to installation directory.

See index.html in the doc/reference directory.

Required jars are distributed in the lib subdirectory.

Latest Documentation:

   http://hibernate.org

Bug Reports:
   
   Hibernate JIRA (preferred)
   hibernate-devel@lists.sourceforge.net

Free Technical Support:

   http://forum.hibernate.org

Commercial Support and Training:

   http://hibernate.org/SupportTraining
   
   
Get Up And Running Quick
------------------------
Demo:

   (1) copy your JDBC driver to the lib directory
   (2) edit etc/hibernate.properties
   (3) run "ant eg" or "build eg"
   (4) browse the sourcecode in eg/org/hibernate/auction

Tests:

   (1) copy your JDBC driver to the lib directory
   (2) edit etc/hibernate.properties
   (3) run "ant junitreport" or "build junitreport"
   (4) see build/test-reports/index.html


Other Stuff
-----------
This software is distributed under the terms of the FSF Lesser Gnu 
Public License (see lgpl.txt).

This product includes software developed by the Apache Software 
Foundation (http://www.apache.org/).

Back to the top