Project

General

Profile

How to Spring » History » Version 54

Henning Blohm, 09.05.2014 21:08

1 39 Henning Blohm
h1. How to use the Spring framework in Z2
2 16 Henning Blohm
3 37 Henning Blohm
There is actually nothing really particular about using Spring in Z2. But when knowing how Z2 modularity works, there is much to gain by spending a few minutes reading this Howto. We assume however that you are familiar with the Spring framework as such.
4 2 Henning Blohm
5 53 Henning Blohm
It may be best to inspect the the basic [[Sample-spring-basic]] sample in parallel to reading this page, as that makes use of most of what you will find here and is still really simple. Plus, running the sample requires no more than Eclipse and five minutes of your time.
6 1 Henning Blohm
7 53 Henning Blohm
Other samples highlight specific integrations that may look interesting to you:
8
9
* [[Sample-spring-hibernate]] shows how to use Spring with Hibernate and Z2's built-in basic transaction management,
10
* [[Sample-jta-spring]] shows how to use Spring with Hibernate and the Atomikos transaction manager,
11
* [[Sample-springds-hibernate]] shows how to use Spring with Hibernate and Spring's basic basic transaction management
12
13
by here you should have noted that transaction handling is obviously a noteworthy cross-cutting concern.
14
15
* [[Sample-vaadin-spring-hibernate]] shows a blueprint for a rich-internet-application built on Vaadin, Spring, and Hibernate
16
 
17
Please also check the add-on page [[Spring add-on]]. The Spring add-on should be considered an example on how to make use of Spring with Z2. It adds extremely useful support functionality for a seamless aspectj-driven annotation based application configuration which, turning the combination of Z2 and Spring into a first-class, flexible, extensible, productive, and scalable application server environment.
18 44 Henning Blohm
19 38 Henning Blohm
h2. Pre-requisites
20 1 Henning Blohm
21 54 Henning Blohm
In order to have the Spring libraries available you need to add the add-on [[Spring add-on]] via the repository "z2-addons.spring":http://redmine.z2-environment.net/projects/z2-addons/repository/z2-addons-spring to your environment (the samples do so in their _environment_).  To use the master branch version, add a *springAddon.properties* component descriptor to your *environment* module saying
22 2 Henning Blohm
23 17 Henning Blohm
<pre><code class="python">
24 15 Henning Blohm
com.zfabrik.systemStates.participation=com.zfabrik.boot.main/sysrepo_up
25 3 Henning Blohm
26
# git stored component repository
27
com.zfabrik.component.type=com.zfabrik.gitcr
28
29
# true <=> optional repository. If gitcr.uri is invalid, then this gitcr will be ignore silently  
30
gitcr.optional=true
31
32
# this can also point to a remote repository like 
33
# ssh://myserver/some/git/repo
34
gitcr.uri=http://git.z2-environment.net/z2-addons.spring
35
# the git branch to use (e.g. 'master')
36
gitcr.branch=master
37
</code></pre>
38 15 Henning Blohm
39 3 Henning Blohm
For your own system, you may need to adapt the repository URL and the branch selection accordingly.
40
41 1 Henning Blohm
If that sounds like meaningless gibberish to you - sorry! Please consult the documentation at http://www.z2-environment.eu/v21doc and go back to [[First_steps_with_z2]].
42 45 Henning Blohm
43 54 Henning Blohm
In addition, as of v2.3 you need to declare a Maven component repository *environment/mavenDefault* in order to guide Z2 in retrieving remote Maven artifacts. This is what all samples do, as for example [[Sample-spring-basic]] in "environment/mavenDefault":https://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-spring-basic/revisions/master/show/environment/mavenDefault.
44 1 Henning Blohm
45 54 Henning Blohm
To start, it will be best to start from the sample directly.
46 4 Henning Blohm
47 54 Henning Blohm
When you added that repository the following Z2 modules are available from the addon:
48
49 1 Henning Blohm
* org.springframework.orm
50 4 Henning Blohm
* org.springframework.transaction
51 1 Henning Blohm
* org.springframework.jdbc         
52
* com.zfabrik.springframework      
53
* com.zfabrik.springframework.web  
54
55 54 Henning Blohm
These are in fact assembly modules built from maven artifacts that are (by virtue of the maven component repo) available in Z2 as well (see [[How to Access a Maven Repository]] for more details). Specifically these are (at the time of writing):
56 1 Henning Blohm
57 54 Henning Blohm
* org.springframework:spring-aop
58
* org.springframework:spring-aspects
59
* org.springframework:spring-beans
60
* org.springframework:spring-context
61
* org.springframework:spring-core
62
* org.springframework:spring-expression
63
* org.springframework:spring-jdbc
64
* org.springframework:spring-orm
65
* org.springframework:spring-tx
66
* org.springframework:spring-web
67 38 Henning Blohm
68 54 Henning Blohm
These Z2 Java components are representing exactly the Spring artifacts distributed by Springsource.
69 1 Henning Blohm
70 54 Henning Blohm
Before you get frustrated by the amount of details in this Howto, please remember the samples above: In the end it boils down to just using things correctly (and then repeatedly).
71 5 Henning Blohm
72
h2. Using Spring in Web applications
73
74
This is the simplest and really just the standard case. If you do not strive for re-use across modules that use Spring, then there is not much to worry about. 
75 17 Henning Blohm
76 5 Henning Blohm
As usual, you define an application context in the WEB-INF folder of the Web application and set up a context listener in WEB-INF/web.xml to have the application 
77
context initialized as the Web app is started.
78 1 Henning Blohm
79 5 Henning Blohm
In order to have the minimal set of dependencies satisfied - i.e. not assuming you want to use the (very cool) AspectJ based Spring configuration, you should _add_ (i.e. augment whatever refs you already have) the following references to *java/z.properties*:
80 1 Henning Blohm
81 11 Henning Blohm
<pre><code class="python">
82 5 Henning Blohm
java.privateReferences=\
83 54 Henning Blohm
	com.zfabrik.springframework.web
84 5 Henning Blohm
</code></pre>
85
86 7 Henning Blohm
The reference to *com.zfabrik.springframework.web* is not strictly needed but adds the following capabilities:
87 5 Henning Blohm
88 7 Henning Blohm
* You implicitly get *com.zfabrik.springframework*, i.e. the integration features described below
89
* You can use a parent application context to your Web application application context as easily as you would hope (see below).
90
91 19 Henning Blohm
92 7 Henning Blohm
h2. Using Spring Context Support
93 19 Henning Blohm
94 54 Henning Blohm
The module *org.springframework:spring-context* is not meant to be referenced but to be _included_.
95 7 Henning Blohm
Including a Java component means that it's resources (class files, jars,...) will be copied into the including scope rather than referenced via class loader delegation.
96 19 Henning Blohm
97 54 Henning Blohm
The difference is that in that case, all the includer sees is also to be seen by the types in the included component. And that is exactly what spring-context is about: It holds adapter classes that have dangling dependencies on other prominent libraries, that are _connected_ when included ("assembled") in a _fulfilling_ context. Say for example we are talking about the Lucene search engine library. If your Java component references the Lucene libraries (which are not included with Z2 by default), and say you want to use the Spring adapter types, then include spring-context by adding (i.e. customizing correspondingly) the private include:
98 19 Henning Blohm
99
<pre><code class="python">
100
java.privateIncludes=\
101 54 Henning Blohm
   org.springframework:spring-context
102 19 Henning Blohm
</code></pre>
103
104
Typically it makes most sense to only use _private includes_. If you include into the API, which is possible, other modules that reference your API will find the included types
105
of your API with preference of their includes (as part of the parent-first delegation principle). So, they may not be able to repeat the same include pattern described above. 
106 49 Henning Blohm
107
h2. Spring stuff that requires includes
108
109
Several Spring use cases require the use of includes (more below). Among these are:
110
111
|_. Use case|_. What to private-include|_.Why|
112
|Spring context support|org.springframework.foundation/context.support|Dangling imports in spring lib|
113
|Spring AspectJ|org.springframework.foundation/aspects|Class loader bound application context (must be kept on scope - see below)|
114
|Spring Security|org.springframework.security/{config,ldap,...}|Dangling imports in spring lib|
115
116 38 Henning Blohm
117 19 Henning Blohm
h2. Using Spring in re-use modules
118 20 Henning Blohm
119
When going modular, you will leave the pure "Spring in a Web Application" path. That is, you may want to use Spring in modules that expose components and APIs to other modules. For example to implement shared services that are used in more than one Web Application, or for example to implement scheduled job execution.
120 22 Henning Blohm
121 20 Henning Blohm
*Define an Application Context in a Java Module*
122
123
In that case, you will not define an application context in a WEB-INF folder (as there most likely is none) but instead you will define a class path defined application context, or more specifically you will put your application context (most likely) in *java/src.impl/META-INF/applicationContext.xml* of your re-use module.
124 22 Henning Blohm
125 1 Henning Blohm
*Starting an Application Context*
126 21 Henning Blohm
127
Now that you have that application context, you need to make sure it is started. If you went this far, there is good reasons you use Z2 runtime dependencies to start it. Pre-requisite for that is to have the application context declared as a Z2 component. So you create a file *applicationContext.properties* in your module saying
128
129
<pre><code class="python">
130
com.zfabrik.component.type=org.springframework.context
131
132
#
133
# context config location is where the context is 
134
# actually defined. 
135
#
136 1 Henning Blohm
context.contextConfigLocation=classpath:META-INF/applicationContext.xml
137
</code></pre>
138 22 Henning Blohm
139
Once it is defined as a component, you can have it started via a "system state dependency":http://www.z2-environment.eu/v20doc#System%20States%20(core), via a "generic component depencency":http://www.z2-environment.eu/v20doc#CoreComponentProps.
140
141 19 Henning Blohm
Another way is to have it started implicitly from a bean component declaration. In that case, before providing the bean instance, the application context will be initialized.
142 38 Henning Blohm
143 23 Henning Blohm
*Exposing a bean from an application context*
144
145
Now that you have declared an application context component, you can actually expose beans from it as Z2 components that may be looked up from other modules. To do so, create a component like this:
146
147
<pre><code class="python">
148
com.zfabrik.component.type=org.springframework.bean
149
150
#
151
# the context that defines the bean (more than one
152
# bean can be exposed like this)
153 24 Henning Blohm
#
154 23 Henning Blohm
bean.context=<module name>/applicationContext
155
156
#
157
# the bean name
158 25 Henning Blohm
#
159 23 Henning Blohm
bean.name=<bean name>
160
</code></pre>
161
162
Now that a bean has been made available to other modules, the next natural question is how to actually refer to a Z2 component from a Spring application context.
163 38 Henning Blohm
164 1 Henning Blohm
*Importing a bean or just any component*
165 25 Henning Blohm
166 1 Henning Blohm
The module *com.zfabrik.springframework* contains a factory bean that just does that. Assuming you want to use component &lt;module&gt;/&lt;name&gt; which is of type (or has super type) my.Class, you would add to your importing application context:
167 25 Henning Blohm
168
<pre><code class="xml">
169
<bean id="beanId" class="com.zfabrik.springframework.ComponentFactoryBean">
170
  <property name="componentName" value="<module>/<name>" />
171
  <property name="className" value="my.Class" />
172
</bean>
173 23 Henning Blohm
</code></pre>
174 26 Henning Blohm
175 2 Henning Blohm
Ok, so far so good. Next subject is how to add more configuration magic to all of this.
176 38 Henning Blohm
177 1 Henning Blohm
h2. Using Spring's AspectJ configuration
178 27 Henning Blohm
179 1 Henning Blohm
By default, Spring's annotation support reaches as far as Spring "can see". That is, objects instantiated outside of Spring's control will not be subject to Spring configuration - simply because Spring had no chance to look at it. 
180 46 Udo Offermann
181 27 Henning Blohm
When using Spring's AspectJ feature, Spring's configuration reach can be extended to virtually anything within the implementation scope. Normally, configuring your build to include the AspectJ compilation can be tricky and tiring. The alternative of using load-time-weaving is rather error-prone as types may not have been loaded before the aspect has been registered - something where you can so easily fool yourself.
182 48 Henning Blohm
183 27 Henning Blohm
Fortunately for you, the Spring integration features of Z2 also provide a compiler extension for Spring with AspectJ. To use it, you need to modify your *java/z.properties* to reflect the following includes and refs and in particular the compiler settings:
184
185
<pre><code class="python">
186
java.privateReferences=\
187
	com.zfabrik.springframework,\
188
	org.springframework.foundation,\
189
	org.springframework.orm,\
190
	org.springframework.transaction
191
192
java.privateIncludes=\
193
	org.springframework.foundation/aspects
194
195
	
196
java.compile.order=java,spring_aspectj
197
</code></pre>
198
199
The refs to spring transaction and spring ORM look unintuitive. And they are. At the time of this writing the Spring aspect unfortunately still required those.
200 41 Henning Blohm
201 27 Henning Blohm
When you have applied the configuration above, you can make any type Spring configurable by annotating it with <code>@Configurable</code>. For example the "ControllerServlet":http://redmine.z2-environment.net/projects/z2-samples/repository/z2-samples-spring-basic/revisions/master/entry/com.zfabrik.samples.spring-basic.frontend/java/src.impl/com/zfabrik/samples/impl/frontend/ControllerServlet.java in the sample *z2-samples.spring-basic* has the following skeleton:
202
203 1 Henning Blohm
<pre><code class="java">
204 41 Henning Blohm
@Configurable
205
public class ControllerServlet extends HttpServlet {
206
        @Autowired
207 27 Henning Blohm
        private IComputationService computations;
208 41 Henning Blohm
209
        @Override
210
        protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
211
            //...
212
        }
213 27 Henning Blohm
214 41 Henning Blohm
}
215 27 Henning Blohm
216 26 Henning Blohm
</code></pre>
217 50 Henning Blohm
218 1 Henning Blohm
Now that all complexity of AspectJ compilation is completely out of the way, using Spring AspectJ can realize all its advantages over regular Spring AOP. Most notably, Spring AspectJ does not require proxy objects as Spring AOP does. This has a lot of simplifying implications. For example, annotations like @Transactional now work regardless of who is calling (inside or outside) and what methods are annotated. Similarly, other annotations such as those of Spring security work as naively expected. 
219 50 Henning Blohm
220
*Simply put: Spring AspectJ does it right where Spring AOP could not due to technical limitations.*
221
222
The whole subject is not completely trivial. For a deeper understanding we suggest to read:
223
224
* "Aspect Oriented Programming with Spring (Springsource)":http://docs.spring.io/spring/docs/2.5.x/reference/aop.html#aop-ataspectj
225
* "A starting point for pro and cons discussion (Stackoverflow)":http://stackoverflow.com/questions/1606559/spring-aop-vs-aspectj
226
* "Pitfalls of Spring proxying (external blog)":http://nurkiewicz.blogspot.de/2011/10/spring-pitfalls-proxying.html
227
228
h3. Making sure to configure for Spring AspectJ correctly
229
230
In order to avoid proxying when using Spring AspectJ, which you should to have one consistent approach, make sure that you apply a @mode="aspectj"@ attribute where possible.
231
232
This includes:
233
234
* the @<tx:annotation-driven/>@ annotation. Make sure it reads @<tx:annotation-driven mode="aspectj"/>@ (and possibly other attributes)
235
* the @<security:global-method-security/>@ annotation. Make sure it reads @<security:global-method-security mode="aspectj"/>@ (and possibly other attributes)
236
237
Use of the Spring aspects require to include the matching aspect libraries. In particular:
238
239
* When using Spring security aspects, add @org.springframework.security/aspects@ to your private includes
240
241
For example, an advanced Spring usage java component configuration may look like this:
242
243
<pre><code class="python">
244
com.zfabrik.component.type=com.zfabrik.java
245 52 Henning Blohm
java.privateReferences=\
246
    org.springframework.foundation,\
247
    org.springframework.orm,\
248
    org.springframework.web,\
249
    org.springframework.transaction,\
250 50 Henning Blohm
    org.springframework.security
251
252
java.privateIncludes=\
253
    org.springframework.security/config,\
254
    org.springframework.security/aspects,\
255
    org.springframework.security/taglibs,\
256
    org.springframework.security/web,\
257
    org.springframework.foundation/aspects,\
258
    org.springframework.foundation/context.support
259 51 Henning Blohm
260
#
261
# enables the processing of @Secured annotations in the implementation
262
#
263
aspectj.privateAspectPathByClass=\
264
	org.springframework.security.access.intercept.aspectj.aspect.AnnotationSecurityAspect
265
	
266 50 Henning Blohm
267
java.compile.order=java,spring_aspectj
268 51 Henning Blohm
</code></pre>
269
270
See also 
271
* "AspectJCompiler":http://www.z2-environment.net/javadoc/com.zfabrik.springframework!2Fjava/impl/com/zfabrik/impl/springframework/AspectJCompiler.html
272 50 Henning Blohm
* [[sample-spring-basic]] that also contains a Spring Security part.
273
274
275
h3. More important things to know about Spring with AspectJ
276 28 Henning Blohm
277
As always, there is some important pitfalls to watch out for. The Spring AspectJ integration roughly works as follows: 
278 1 Henning Blohm
279 29 Henning Blohm
# When an application context is loaded that has &lt;context:spring-configured /&gt; and the Spring aspect classes are on the classpath (i.e. can be found by the class loader of the application context), then the current application context will be set as a static class variable of one Spring aspect implementation class.
280 1 Henning Blohm
# Later, when a configurable object is being instantiated, the woven-in code will look for that static class variable to determine the application context to take configuration from.
281 29 Henning Blohm
282
This has a few dramatic consequences:
283
284
* If you would have two application contexts seeing the same static class variable they would override each other and hence you essentially lose control over what configuration is effective.
285 28 Henning Blohm
* Hence you should not using Spring AspectJ configuration in API types, as anyone referring to your API would not be able to repeat the trick.
286
287
That's why: *Only use Spring AspectJ in implementations, i.e. under src.impl or src.test*
288 38 Henning Blohm
289 7 Henning Blohm
h2. Using a parent application context in a Web application application context
290
291 8 Henning Blohm
Sometimes, later, when you find that your module has a web app but in addition you want to expose services, from the very same module, i.e. when you have spring configured objects in the web app but also a classpath defined application context that should serve as a _parent application context_ to the one of the web app (admittedly an advanced case), then you will find that that is slightly tricky to achieve (see e.g. http://blog.springsource.org/2007/06/11/using-a-shared-parent-application-context-in-a-multi-war-spring-application/). 
292 47 Henning Blohm
293 26 Henning Blohm
The class *com.zfabrik.springframework.web.ComponentParentContextContextLoaderListener* is a drop-in replacement for Spring's ContextLoaderListener implementation that simplifies that use-case as explained in the "javadoc":http://www.z2-environment.net/javadoc/com.zfabrik.springframework.web!2Fjava/api/com/zfabrik/springframework/web/ComponentParentContextContextLoaderListener.html.
294 42 Henning Blohm
295 1 Henning Blohm
h2. Advanced notes
296 42 Henning Blohm
297
298
As may have leaked through above already, some features of the Spring framework have slightly non-trivial prerequisites. In general these require that Spring provided libraries are used within the context of other Java components - as for context.support above - and that requires some explanation:
299
300
At runtime, Java components in Z2 have two class loader instances. One for the API definitions of the component, the other for the implementation definitions of the component. The latter is not visible to any referencing component, while the former is. Visibility is achieved by class loader delegation. That is, the class loaders of a referencing Java component will first delegate to the API class loader of the referenced component when looking for a type before checking their own resources. 
301
302
The delegation sequence is always strictly along the references. 
303
304
When we use the term shared library or shared Java component, we are referring to a Java component that can be referenced by others to provide some functionality. At runtime, the types of that Java component are loaded exactly once into the VM's memory. As a side-effect, static class members for example will be shared amongst all usages.
305
306
The alternative to sharing a Java component is to “include” a Java component. When a Java component references a component of type *com.zfabrik.files* or *com.zfabrik.java*, libraries and class files of the referenced component will be copied into the referencing component (depending on the reference either into the API or the implementation part). In that case, the types provided by the files component are used in the context of there referencing component and may be loaded several times.
307
308
Considering Spring there are two cases that mandate a non-shared use of libraries.
309
310
h3. Dangling Imports
311
312
Some Spring libraries provide integration of Spring with a variety of third-party libraries. When those libraries were compiled, all those third-party libraries were present on the compilation class path. Java's late linking paradigm allows to use those libraries without the presence of the third-party libraries as long as visibility of those types is not necessary yet.
313
One example of such a library is the context support Spring module. See above for more details.
314
315
h3. Static Members Holding Singletons
316
317
Another reason that mandates in context use is module specific static initialization. In other words there is a class that holds static, class-level data that is specific to the using context.
318 1 Henning Blohm
One example of such is the Spring AspectJ context that points to its underlying application context by a class variable. As a consequence, sharing these classes between modules with different application context would lead to confusions about what application context is used during the application of the Spring aspect. That is why the Spring AspectJ library should always be included by a private reference, and the implementation should use only one application context as far as AspectJ configuration is concerned.