Project

General

Profile

Sample-hibernate-basic » History » Version 21

Henning Blohm, 10.09.2015 15:26

1 1 Henning Blohm
h1. A plain Hibernate on Z2 sample
2 2 Henning Blohm
3 3 Henning Blohm
Note that Hibernate is used in other samples as well, such as [[Sample-jta-plain]], [[Sample-jta-spring]], and others. This sample shows the minimal things to do to use Hibernate as an implementation of the Java Persistence API ("JPA":http://de.wikipedia.org/wiki/Java_Persistence_API). 
4 4 Henning Blohm
5 5 Henning Blohm
This sample is stored in the repository "z2-samples.hibernate.basic":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic. 
6
7 19 Henning Blohm
This sample makes use of the [[Hibernate Add-on]] and is most likely the best documentation on how to use its supporting functionality. While some of the possibly complex seeming (but only needed once) glue code below is not required when using Spring (for example), as in [[Sample-spring-hibernate]], [[Sample-springds-hibernate]], this sample is most instructive on how Hibernate, Transaction Management, Z2, and the Jetty Web Container integrate with one another while closely sticking to standard descriptors (JPA) and naming (Java EE JNDI/Servlet).
8 14 Henning Blohm
9 5 Henning Blohm
h2. Prerequisites
10
11 21 Henning Blohm
You need is a JDK 6 or JDK 7 distribution as described in [[Step_2_-_Install_and_run_in_5_minutes]].
12
13
*NOTE:* All versions less than 3 will not run with Java 8. You need to use Java 7 instead!
14
15 11 Henning Blohm
You need to run Java DB as network server on localhost. This is explained next.
16 1 Henning Blohm
17 11 Henning Blohm
The application will create a database "z2-samples"
18 5 Henning Blohm
19 11 Henning Blohm
{{include(How to run Java db)}}
20
21
22
h2. Run the sample
23 5 Henning Blohm
24 6 Henning Blohm
Like all samples, also this sample can be run as in [[How to run a sample]]. If you have the database, the fastest way to verify whether it runs is:
25 5 Henning Blohm
26
<pre><code class="ruby">
27
mkdir install
28
cd install 
29
git clone -b master http://git.z2-environment.net/z2-base.core
30
git clone -b master http://git.z2-environment.net/z2-samples.hibernate-basic
31
32
# on Linux / Mac OS:
33
cd z2-base.core/run/bin
34
./gui.sh
35
36
# on Windows:
37
cd z2-base.core\run\bin
38
gui.bat
39
</code></pre>
40
41 10 Henning Blohm
When started, go to http://localhost:8080/hibernate-basic. You should see this:
42
43
!hibernate-basic.png!
44
45 5 Henning Blohm
h2. Details
46
47 7 Henning Blohm
A lot of the things happening here relate to what is explained in [[How to transaction management]].
48 1 Henning Blohm
49 7 Henning Blohm
The assumption of this example is that of a re-use domain module *com.zfabrik.samples.hibernate-basic.domain* that implements a "Thingy Repository" and is used from a web application that is in another module *com.zfabrik.samples.hibernate-basic.web*. The domain module exposes the Thingy Repository as a Z2 component that is bound by the Web app as an environment (ENC) variable and injected into the controller filter by the Web container.
50
51
The domain module makes use of Hibernate's JPA implementation and integrates with the transaction management provided by *com.zfabrik.jta*.
52
53
Now, step-by-step.
54
55
h3. The domain module and its persistence context
56
57
The domain module *com.zfabrik.samples.hibernate-basic.domain* defines a persistence unit "thingies" in "java/src.impl/META-INF/persistence.xml":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.domain/java/src.impl/META-INF/persistence.xml, i.e. in its implementation. That makes sense, as the XML file will be looked up with a class loader and we do not intent to retrieve from another module. Or, put differently, the persistence unit is not part of the module's API.
58
59
In order to integrate with the built-in transaction management the <code>persistence.xml</code> declares the JTA data source 
60
61
<pre><code class="xml">
62
<jta-data-source>components:com.zfabrik.samples.hibernate-basic.domain/DB</jta-data-source>
63
</code></pre>
64 1 Henning Blohm
65 14 Henning Blohm
and the _JTA Platform_ (Hibernate's transaction management abstraction since v4.3) 
66 1 Henning Blohm
67 7 Henning Blohm
<pre><code class="xml">
68 14 Henning Blohm
<property name="hibernate.transaction.jta.platform" value="com.zfabrik.hibernate.Z2JtaPlatform"/>
69 7 Henning Blohm
</code></pre>
70
71 14 Henning Blohm
The former points to the data source component "com.zfabrik.samples.hibernate-basic.domain/DB":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.domain/DB.properties, while the latter makes sure Hibernate can register with the transaction manager implementation that comes built-in with Z2 (other samples, such as [[Sample-jta-plain]], [[Sample-springds-hibernate]] show alternative approaches).
72 7 Henning Blohm
73
The persistence unit defines only one entity. The Thingy as in "Thingy.java":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.domain/java/src.api/com/zfabrik/samples/hibernate_basic/thingies/Thingy.java. That is an API-exposed type. We use the simplified pattern of exposing persistent objects in the API rather than using Data Transfer Objects (DTOs).
74
75 12 Udo Offermann
Also, the domain module exposes the interface of the "Thingy Repository":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.domain/java/src.api/com/zfabrik/samples/hibernate_basic/thingies/ThingyRepository.java. This interface is used by the Web application to retrieve, store, and delete thingies.
76 7 Henning Blohm
77
The implementation of the Thingy Repository, "ThingyRepositoryImpl":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.domain/java/src.impl/com/zfabrik/samples/hibernate_basic/impl/thingies/ThingyRepositoryImpl.java is not a public type. Instead, it is instantiated and held on to via a Z2 component lookup from the Web app on the component "com.zfabrik.samples.hibernate-basic.domain/repository":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.domain/repository.properties.
78
79
In ThingyRepositoryImpl, in order to access and re-use the JPA Entity Manager for the persistence unit "thingies" we use EntityManagerUtil from *org.hibernate* with a Entity Manager Factory that we create upon service instantiation and using the user transaction implementation of *com.zfabrik.jta*:
80
81
<pre><code class="java">
82 1 Henning Blohm
public class ThingyRepositoryImpl implements ThingyRepository {
83
	private EntityManagerFactory emf;
84
85 14 Henning Blohm
	/**
86
	 * Create the repo
87
	 */ 
88 1 Henning Blohm
	public ThingyRepositoryImpl() {
89 14 Henning Blohm
		/*
90
		 * We switch the context class loader so that Hibernate finds our persistence.xml.
91
		 * We use the EntityManagerUtil so that Hibernate doesn't freak out in a 
92
		 * no-Initial-Context-Factory (but URL for lookup) naming environment.
93
		 */
94 7 Henning Blohm
		this.emf = ThreadUtil.cleanContextExecute(
95 14 Henning Blohm
			this.getClass().getClassLoader(),
96 7 Henning Blohm
			new Callable<EntityManagerFactory>() {
97 14 Henning Blohm
				@Override
98 7 Henning Blohm
				public EntityManagerFactory call() throws Exception {
99 14 Henning Blohm
					return EntityManagerUtil.createEntityManagerFactory("thingies");
100
				}
101 7 Henning Blohm
			}
102
		);
103
	}
104
105
	@Override
106
	public void store(Thingy thingy) {
107
		this.em().persist(thingy);
108
	}
109
110
	@SuppressWarnings("unchecked")
111
	@Override
112
	public Collection<Thingy> findAll() {
113
		return this.em().createQuery("select t from Thingy t").getResultList();
114
	}
115
116
	@Override
117
	public void delete(int id) {
118
		Thingy t = this.em().find(Thingy.class, id);
119
		if (t != null) {
120
			this.em().remove(t);
121
		}
122
	}
123
124
	//
125
	// Uses the Entity Manager Util that holds on to EMs created from the passed on EMF
126
	// while the transaction is still open.
127
	//
128
	private EntityManager em() {
129
		return EntityManagerUtil.getEntityManager(
130 1 Henning Blohm
			IComponentsLookup.INSTANCE.lookup(
131 7 Henning Blohm
				"com.zfabrik.jta/userTransaction", 
132
				TransactionManager.class
133
			),
134
			this.emf
135
		);
136
	}
137
}
138 8 Henning Blohm
</code></pre>
139
140 1 Henning Blohm
Note that when creating the entity manager factory, we have to make sure the right context class loader is set so that the persistence unit definition will be picked up by Hibernate. This is a general pattern when initializing services in a modular application: You need to distinguish when the service's context matters vs. when the caller's context matters (check out "a blog article on that":http://www.z2-environment.net/blog/2012/07/for-techies-protecting-java-in-a-modular-world-context-classloaders/).
141 16 Henning Blohm
142 18 Henning Blohm
We would normally use the JPA class "Persistence":http://docs.oracle.com/javaee/6/api/javax/persistence/Persistence.html to create an entity manager factory. Due to "HHH-8818":https://hibernate.atlassian.net/browse/HHH-8818 we do need to work around some JNDI issue by using the EntityManagerUtil (see its "source code":https://redmine.z2-environment.net/projects/z2-addons/repository/z2-addons-hibernate/revisions/master/entry/org.hibernate/java/src.api/com/zfabrik/hibernate/EntityManagerUtil.java here).
143 13 Udo Offermann
144 8 Henning Blohm
h3. The web module, transaction boundaries, and service re-use
145
146
Let's turn to the Web application in *com.zfabrik.samples.hibernate-basic.web/web*. And let's start with how the Thingy Repository is accessed from the Web app. In this example we do not use Spring or direct lookups, instead we use the Web container provided dependency injection mechanisms. In "WebContent/WEB-INF/jetty-env.xml":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.web/web/WebContent/WEB-INF/jetty-env.xml we bind the result of a JNDI lookup for the repository implementation component to the _Environment Naming Context_ (ENC) variable "repos/thingies". This is java EE mechanics. It means that from within the Web app, the repository is available under the JNDI name "java:comp/env/repos/thingies":
147
148
<pre><code class="xml">
149
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
150
  <New id="thingyRepository" class="org.eclipse.jetty.plus.jndi.Resource">
151
    <Arg>repos/thingies</Arg>
152
    <Arg>
153
      <New class="javax.naming.LinkRef">
154
        <Arg>components:com.zfabrik.samples.hibernate-basic.domain/repository?type=com.zfabrik.samples.hibernate_basic.thingies.ThingyRepository</Arg>
155
      </New>
156
    </Arg>
157
  </New>
158
</Configure>
159
</code></pre>
160
161
See also "Jetty JNDI":http://docs.codehaus.org/display/JETTY/JNDI.
162
163
Anyway. Now, in the "ControllerFilter":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.web/java/src.impl/com/zfabrik/samples/hibernate_basic/impl/web/ControllerFilter.java we inject the Thingy Repository like this:
164
165
<pre><code class="java">
166
public class ControllerFilter implements Filter {
167
	
168
	// inject thingies repository (see WEB-INF/jetty-env.xml)
169
	@Resource(name="repos/thingies")
170
	private ThingyRepository thingyRepository;
171
	
172
...
173
}
174
</code></pre>
175
176
Alternatively, if you think this is a little overkill, you might as well use a direct lookup, either with JNDI using the name in the XML or via Z2's component lookup
177
178
<pre><code class="java">
179
IComponentsLookup.INSTANCE.lookup("com.zfabrik.samples.hibernate-basic.domain/repository",ThingyRepository.class);
180
</code></pre>
181
182
Finally a word on transaction management. Transaction boundaries are controlled by the "TransactionFilter":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-hibernate-basic/revisions/master/entry/com.zfabrik.samples.hibernate-basic.web/java/src.impl/com/zfabrik/samples/hibernate_basic/impl/web/TransactionFilter.java contained in the sample. We make use of *TransactionUtil* from *com.zabrik.jta* to wrap the actual web app request in a transaction:
183
184
<pre><code class="java">
185
@Override
186
public void doFilter(final ServletRequest sreq, final ServletResponse sres,	final FilterChain chain) throws IOException, ServletException {
187
  HttpServletRequest req = (HttpServletRequest) sreq;
188
  if (req.getDispatcherType()==DispatcherType.REQUEST || req.getDispatcherType()==DispatcherType.ASYNC) {
189
    try {
190
      TransactionUtil.run(
191
        (UserTransaction) new InitialContext().lookup("java:comp/UserTransaction"),
192
        new Callable<Void>() {
193
          public Void call() throws Exception {
194
            chain.doFilter(sreq, sres);
195
            return null;
196
          }
197
        }
198
      );
199
    } catch (Exception e) {
200
      throw new ServletException(e);
201
    }
202
  } else {
203
    chain.doFilter(sreq, sres);
204 1 Henning Blohm
  }
205
}
206 15 Henning Blohm
</code></pre>
207
208
Finally note that we retrieved the transaction manager via the standard Java EE JNDI name @java:comp/UserTransaction@. Z2 uses Jetty as its Web container implementation. In order to have Jetty bind the transaction manager, we configure the Web server in "environment/webServer/jetty.xml":https://redmine.z2-environment.net/projects/z2-samples/repository/revisions/master/entry/environment/webServer/jetty.xml to retrieve the built-in transaction manager:
209
210
<pre><code class="xml">
211
...
212
213
	<New id="tx" class="org.eclipse.jetty.plus.jndi.Transaction">
214
		<Arg>
215
			<New class="com.zfabrik.tx.UserTransaction">
216
			</New>
217
		</Arg>
218
	</New>
219
...
220 1 Henning Blohm
</code></pre>
221 20 Henning Blohm
222
h2. How this sample makes use of MVNCR
223
224
This sample in conjunction with the [[Hibernate add-on]] is good example on how to use the Maven component repository (see [[How to Access a Maven Repository]]).
225
226
The situation is this:
227
228
* The add-on (the [[Hibernate add-on]] in this case) defines the artifacts required but may not define the actual artifact repository to use. After all it may be used with a locally hosted artifact repository.
229
* The solution environment (in this case this sample) may define the actual artifact repository but it should not need to repeat all the details on the actual artifact names and versions
230
231
To resolve this we use Maven component repository declarations and Maven component repository fragment declarations. 
232
233
* The repository declared as part of the sample in "environment/mavenDefault":https://redmine.z2-environment.net/projects/z2-samples/repository/revisions/master/entry/environment/mavenDefault has all the information on where to get artifacts from, while
234
* the fragment declared in the add-on at "org.hibernate/mvnFragment":https://redmine.z2-environment.net/projects/z2-addons/repository/z2-addons-hibernate/revisions/master/entry/org.hibernate/mvnFragment.properties declares the dependency roots it needs to have resolved from the (yet unknown - from the perspective of the add-on) MVNCR *environment/mavenDefault*.