Project

General

Profile

How to Spring » History » Version 57

Henning Blohm, 09.05.2014 21:28

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 57 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 an IDE 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 55 Henning Blohm
* org.springframework.tx
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 49 Henning Blohm
91
h2. Using Spring in re-use modules
92 38 Henning Blohm
93 19 Henning Blohm
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.
94 20 Henning Blohm
95 55 Henning Blohm
*Define an Application Context in a Java Module for re-use*
96 20 Henning Blohm
97
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.
98
99 1 Henning Blohm
*Starting an Application Context*
100 21 Henning Blohm
101 55 Henning Blohm
Now that you have that application context, you need to make sure it gets started, when you need it up. 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
102 21 Henning Blohm
103
<pre><code class="python">
104
com.zfabrik.component.type=org.springframework.context
105
106
#
107 1 Henning Blohm
# context config location is where the context is 
108 21 Henning Blohm
# actually defined. 
109
#
110
context.contextConfigLocation=classpath:META-INF/applicationContext.xml
111 1 Henning Blohm
</code></pre>
112
113 22 Henning Blohm
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.
114
115
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.
116 19 Henning Blohm
117 38 Henning Blohm
*Exposing a bean from an application context*
118 23 Henning Blohm
119
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:
120 1 Henning Blohm
121 23 Henning Blohm
<pre><code class="python">
122
com.zfabrik.component.type=org.springframework.bean
123
124 1 Henning Blohm
#
125 23 Henning Blohm
# the context that defines the bean (more than one
126 1 Henning Blohm
# bean can be exposed like this)
127 23 Henning Blohm
#
128
bean.context=<module name>/applicationContext
129
130
#
131 24 Henning Blohm
# the bean name
132 23 Henning Blohm
#
133 1 Henning Blohm
bean.name=<bean name>
134 23 Henning Blohm
</code></pre>
135
136 55 Henning Blohm
Once 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.
137 23 Henning Blohm
138 25 Henning Blohm
*Importing a bean or just any component*
139 23 Henning Blohm
140
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:
141
142
<pre><code class="xml">
143 1 Henning Blohm
<bean id="beanId" class="com.zfabrik.springframework.ComponentFactoryBean">
144
  <property name="componentName" value="<module>/<name>" />
145
  <property name="className" value="my.Class" />
146 25 Henning Blohm
</bean>
147 1 Henning Blohm
</code></pre>
148 25 Henning Blohm
149 55 Henning Blohm
Ok, so far so good. Let's see how we can some more configuration magic to all of this.
150 25 Henning Blohm
151
h2. Using Spring's AspectJ configuration
152 23 Henning Blohm
153 55 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 notice instantiation. 
154 2 Henning Blohm
155 55 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. 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.
156 46 Udo Offermann
157 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:
158
159
<pre><code class="python">
160
java.privateReferences=\
161
	com.zfabrik.springframework,\
162 55 Henning Blohm
	org.springframework.tx,\
163
	org.springframework.orm
164 27 Henning Blohm
165
java.privateIncludes=\
166 55 Henning Blohm
	org.springframework:spring-aspects
167 27 Henning Blohm
	
168
java.compile.order=java,spring_aspectj
169
</code></pre>
170
171
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.
172
173 55 Henning Blohm
Note the use of @java.privateIncludes@. In order to isolate application contexts from different modules at runtime, the spring aspect library needs to be included rather than referenced (see the next section). Simply consider the declarations above a blueprint, boilerplate declaration template for using Spring configuration in an implementation of a Z2 Java module.
174
175 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:
176
177 1 Henning Blohm
<pre><code class="java">
178 41 Henning Blohm
@Configurable
179
public class ControllerServlet extends HttpServlet {
180
        @Autowired
181 27 Henning Blohm
        private IComputationService computations;
182 1 Henning Blohm
183 41 Henning Blohm
        @Override
184
        protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
185 1 Henning Blohm
            //...
186 41 Henning Blohm
        }
187
188 1 Henning Blohm
}
189
190
</code></pre>
191
192
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. 
193
194 41 Henning Blohm
*Simply put: Spring AspectJ does it right where Spring AOP could not due to technical limitations.*
195 27 Henning Blohm
196 41 Henning Blohm
The whole subject is not completely trivial. For a deeper understanding we suggest to read:
197 27 Henning Blohm
198 26 Henning Blohm
* "Aspect Oriented Programming with Spring (Springsource)":http://docs.spring.io/spring/docs/2.5.x/reference/aop.html#aop-ataspectj
199 50 Henning Blohm
* "A starting point for pro and cons discussion (Stackoverflow)":http://stackoverflow.com/questions/1606559/spring-aop-vs-aspectj
200 1 Henning Blohm
* "Pitfalls of Spring proxying (external blog)":http://nurkiewicz.blogspot.de/2011/10/spring-pitfalls-proxying.html
201 50 Henning Blohm
202
h3. Making sure to configure for Spring AspectJ correctly
203
204
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.
205
206
This includes:
207
208
* the @<tx:annotation-driven/>@ annotation. Make sure it reads @<tx:annotation-driven mode="aspectj"/>@ (and possibly other attributes)
209
* the @<security:global-method-security/>@ annotation. Make sure it reads @<security:global-method-security mode="aspectj"/>@ (and possibly other attributes)
210
211
Use of the Spring aspects require to include the matching aspect libraries. In particular:
212
213
* When using Spring security aspects, add @org.springframework.security/aspects@ to your private includes
214
215
For example, an advanced Spring usage java component configuration may look like this:
216
217
<pre><code class="python">
218 52 Henning Blohm
com.zfabrik.component.type=com.zfabrik.java
219
java.privateReferences=\
220 55 Henning Blohm
    com.zfabrik.springframework,\
221 52 Henning Blohm
    org.springframework.orm,\
222
    org.springframework.web,\
223 55 Henning Blohm
    org.springframework.tx
224 50 Henning Blohm
225
java.privateIncludes=\
226 55 Henning Blohm
    org.springframework.security:spring-security-core,\
227
    org.springframework.security:spring-security-web,\
228
    org.springframework.security:spring-security-config,\
229
    org.springframework.security:spring-security-aspects
230
    org.springframework:spring-aspects,\
231
    org.springframework:spring-context.support
232 51 Henning Blohm
233
#
234
# enables the processing of @Secured annotations in the implementation
235
#
236
aspectj.privateAspectPathByClass=\
237
	org.springframework.security.access.intercept.aspectj.aspect.AnnotationSecurityAspect
238
	
239 50 Henning Blohm
240
java.compile.order=java,spring_aspectj
241 51 Henning Blohm
</code></pre>
242
243
See also 
244 1 Henning Blohm
* "AspectJCompiler":http://www.z2-environment.net/javadoc/com.zfabrik.springframework!2Fjava/impl/com/zfabrik/impl/springframework/AspectJCompiler.html
245
* [[sample-spring-basic]] that also contains a Spring Security part.
246
247
248
h3. More important things to know about Spring with AspectJ
249
250
As always, there is some important pitfalls to watch out for. The Spring AspectJ integration roughly works as follows: 
251
252
# 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.
253
# 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.
254
255
This has a few dramatic consequences:
256
257
* 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.
258
* 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.
259
260
That's why: *Only use Spring AspectJ in implementations, i.e. under src.impl or src.test*
261
262
h2. Using a parent application context in a Web application application context
263
264
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/). 
265
266
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.
267 51 Henning Blohm
268 50 Henning Blohm
h2. Advanced notes
269
270
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:
271
272 28 Henning Blohm
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. 
273
274 1 Henning Blohm
The delegation sequence is always strictly along the references. 
275 29 Henning Blohm
276 1 Henning Blohm
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.
277 29 Henning Blohm
278
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.
279
280
Considering Spring there are two cases that mandate a non-shared use of libraries.
281 28 Henning Blohm
282
h3. Dangling Imports
283
284 38 Henning Blohm
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.
285 7 Henning Blohm
One example of such a library is the context support Spring module. See above for more details.
286
287 8 Henning Blohm
h3. Static Members Holding Singletons
288 47 Henning Blohm
289 26 Henning Blohm
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.
290 42 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.
291 55 Henning Blohm
292
h2. Using Spring Context Support
293
294
Like the Spring Aspect, but because of dangling imports, the module *org.springframework:spring-context-support* is not meant to be referenced but to be _included_.
295
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.
296
297
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:
298
299
<pre><code class="python">
300
java.privateIncludes=\
301
   org.springframework:spring-context-support
302
</code></pre>
303
304
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
305
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. 
306
307
h2. Spring stuff that requires includes
308
309
Several Spring use cases require the use of includes (more below). Among these are:
310
311
|_. Use case|_. What to private-include|_.Why|
312 56 Henning Blohm
|Spring context support|org.springframework:spring-context-support|Dangling imports in spring lib|
313 55 Henning Blohm
|Spring AspectJ|org.springframework:spring-aspects|Class loader bound application context (must be kept on scope - see below)|
314 56 Henning Blohm
|Spring Security|org.springframework:spring-security-{config,core,web,...}|Dangling imports in spring lib|