Added tutorials of the hibernate-release 5.0.12.Final
[hibernate4-maven-plugin] / src / it / tutorials-5.0.12 / annotations / src / test / java / org / hibernate / tutorial / annotations / AnnotationsIllustrationTest.java
1 /*
2  * Hibernate, Relational Persistence for Idiomatic Java
3  *
4  * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
5  * indicated by the @author tags or express copyright attribution
6  * statements applied by the authors.  All third-party contributions are
7  * distributed under license by Red Hat Inc.
8  *
9  * This copyrighted material is made available to anyone wishing to use, modify,
10  * copy, or redistribute it subject to the terms and conditions of the GNU
11  * Lesser General Public License, as published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
16  * for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this distribution; if not, write to:
20  * Free Software Foundation, Inc.
21  * 51 Franklin Street, Fifth Floor
22  * Boston, MA  02110-1301  USA
23  */
24 package org.hibernate.tutorial.annotations;
25
26 import java.util.Date;
27 import java.util.List;
28
29 import org.hibernate.Session;
30 import org.hibernate.SessionFactory;
31 import org.hibernate.boot.MetadataSources;
32 import org.hibernate.boot.registry.StandardServiceRegistry;
33 import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
34
35 import junit.framework.TestCase;
36
37 /**
38  * Illustrates the use of Hibernate native APIs.  The code here is unchanged from the {@code basic} example, the
39  * only difference being the use of annotations to supply the metadata instead of Hibernate mapping files.
40  *
41  * @author Steve Ebersole
42  */
43 public class AnnotationsIllustrationTest extends TestCase {
44         private SessionFactory sessionFactory;
45
46         @Override
47         protected void setUp() throws Exception {
48                 // A SessionFactory is set up once for an application!
49                 final StandardServiceRegistry registry = new StandardServiceRegistryBuilder()
50                                 .configure() // configures settings from hibernate.cfg.xml
51                                 .build();
52                 try {
53                         sessionFactory = new MetadataSources( registry ).buildMetadata().buildSessionFactory();
54                 }
55                 catch (Exception e) {
56                         // The registry would be destroyed by the SessionFactory, but we had trouble building the SessionFactory
57                         // so destroy it manually.
58                         StandardServiceRegistryBuilder.destroy( registry );
59                 }
60         }
61
62         @Override
63         protected void tearDown() throws Exception {
64                 if ( sessionFactory != null ) {
65                         sessionFactory.close();
66                 }
67         }
68
69         @SuppressWarnings({ "unchecked" })
70         public void testBasicUsage() {
71                 // create a couple of events...
72                 Session session = sessionFactory.openSession();
73                 session.beginTransaction();
74                 session.save( new Event( "Our very first event!", new Date() ) );
75                 session.save( new Event( "A follow up event", new Date() ) );
76                 session.getTransaction().commit();
77                 session.close();
78
79                 // now lets pull events from the database and list them
80                 session = sessionFactory.openSession();
81         session.beginTransaction();
82         List result = session.createQuery( "from Event" ).list();
83                 for ( Event event : (List<Event>) result ) {
84                         System.out.println( "Event (" + event.getDate() + ") : " + event.getTitle() );
85                 }
86         session.getTransaction().commit();
87         session.close();
88         }
89 }