Project

General

Profile

How to Spring » History » Version 53

Henning Blohm, 09.05.2014 20:54

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 43 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 *springRepository.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
36
# the git branch to use (e.g. 'master')
37
gitcr.branch=master
38
</code></pre>
39 15 Henning Blohm
40 3 Henning Blohm
For your own system, you may need to adapt the repository URL and the branch selection accordingly.
41
42 45 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]].
43 3 Henning Blohm
44
45 9 Henning Blohm
When you added that repository the following modules are available:
46 4 Henning Blohm
47
* org.springframework.orm
48
* org.springframework.security
49
* org.springframework.foundation   
50
* org.springframework.transaction
51
* org.springframework.jdbc         
52
* org.springframework.web
53
* com.zfabrik.springframework      
54
* com.zfabrik.springframework.web  
55
56 1 Henning Blohm
57
With the exception of those starting with "com.zfabrik", these do, more or less, correspond to the typical Spring modules found out there. 
58
59 18 Henning Blohm
Before you get frustrated by the amount of details in this Howto, please remember that there is practical samples available to help you check how things can really be assembled to work nicely:
60 10 Henning Blohm
61 40 Henning Blohm
* [[sample-spring-basic]]
62
* [[sample-jta-spring]]
63 10 Henning Blohm
64 38 Henning Blohm
h2. Using Spring in Web applications
65 2 Henning Blohm
66
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. 
67 5 Henning Blohm
68
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 
69
context initialized as the Web app is started.
70
71
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*:
72
73 17 Henning Blohm
<pre><code class="python">
74 5 Henning Blohm
java.privateReferences=\
75
	com.zfabrik.springframework.web,\
76
	org.springframework.foundation,\
77
	org.springframework.web
78
79 11 Henning Blohm
</code></pre>
80 5 Henning Blohm
81
The reference to *com.zfabrik.springframework.web* is not strictly needed but adds the following capabilities:
82
83 7 Henning Blohm
* You implicitly get *com.zfabrik.springframework*, i.e. the integration features described below
84 5 Henning Blohm
85 7 Henning Blohm
* You can use a parent application context to your Web application application context as easily as you would hope (see below).
86
87
88 19 Henning Blohm
h2. Using Spring Context Support
89 7 Henning Blohm
90 19 Henning Blohm
The module *org.springframework.foundation* holds a Java component *org.springframework.foundation/context.support* that is not meant to be referenced but to be _included_.
91
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.
92 7 Henning Blohm
93 19 Henning Blohm
The difference is that in that case, all the includer sees is also be seen by the types in the included component. And that is exactly what context.support is about: It holds adapter classes that effectively have dangling dependencies on other prominent libraries. Say for example we are talking about the Lucene search engine library. If your Java component references the Lucene libs (which are not included with Z2 by default), and say you want to use the Spring adapter types, then include context.support by adding (i.e. customizing correspondingly) the private include:
94
95
<pre><code class="python">
96
java.privateIncludes=\
97
   org.springframework.foundation/context.support
98
</code></pre>
99
100
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
101
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. 
102
103 49 Henning Blohm
h2. Spring stuff that requires includes
104
105
Several Spring use cases require the use of includes (more below). Among these are:
106
107
|_. Use case|_. What to private-include|_.Why|
108
|Spring context support|org.springframework.foundation/context.support|Dangling imports in spring lib|
109
|Spring AspectJ|org.springframework.foundation/aspects|Class loader bound application context (must be kept on scope - see below)|
110
|Spring Security|org.springframework.security/{config,ldap,...}|Dangling imports in spring lib|
111
112
113 38 Henning Blohm
h2. Using Spring in re-use modules
114 19 Henning Blohm
115 20 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.
116
117 22 Henning Blohm
*Define an Application Context in a Java Module*
118 20 Henning Blohm
119
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.
120
121 22 Henning Blohm
*Starting an Application Context*
122 1 Henning Blohm
123 21 Henning Blohm
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
124
125
<pre><code class="python">
126
com.zfabrik.component.type=org.springframework.context
127
128
#
129
# context config location is where the context is 
130
# actually defined. 
131
#
132
context.contextConfigLocation=classpath:META-INF/applicationContext.xml
133 1 Henning Blohm
</code></pre>
134
135 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.
136
137
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.
138 19 Henning Blohm
139 38 Henning Blohm
*Exposing a bean from an application context*
140 23 Henning Blohm
141
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:
142
143
<pre><code class="python">
144
com.zfabrik.component.type=org.springframework.bean
145
146
#
147
# the context that defines the bean (more than one
148
# bean can be exposed like this)
149
#
150 24 Henning Blohm
bean.context=<module name>/applicationContext
151 23 Henning Blohm
152
#
153
# the bean name
154
#
155 25 Henning Blohm
bean.name=<bean name>
156 23 Henning Blohm
</code></pre>
157
158
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.
159
160 38 Henning Blohm
*Importing a bean or just any component*
161 1 Henning Blohm
162 25 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:
163 1 Henning Blohm
164 25 Henning Blohm
<pre><code class="xml">
165
<bean id="beanId" class="com.zfabrik.springframework.ComponentFactoryBean">
166
  <property name="componentName" value="<module>/<name>" />
167
  <property name="className" value="my.Class" />
168
</bean>
169
</code></pre>
170 23 Henning Blohm
171 26 Henning Blohm
Ok, so far so good. Next subject is how to add more configuration magic to all of this.
172 2 Henning Blohm
173 38 Henning Blohm
h2. Using Spring's AspectJ configuration
174 1 Henning Blohm
175 27 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. 
176 1 Henning Blohm
177 46 Udo Offermann
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.
178 27 Henning Blohm
179 48 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:
180 27 Henning Blohm
181
<pre><code class="python">
182
java.privateReferences=\
183
	com.zfabrik.springframework,\
184
	org.springframework.foundation,\
185
	org.springframework.orm,\
186
	org.springframework.transaction
187
188
java.privateIncludes=\
189
	org.springframework.foundation/aspects
190
191
	
192
java.compile.order=java,spring_aspectj
193
</code></pre>
194
195
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.
196
197 41 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:
198 27 Henning Blohm
199
<pre><code class="java">
200 1 Henning Blohm
@Configurable
201 41 Henning Blohm
public class ControllerServlet extends HttpServlet {
202
        @Autowired
203
        private IComputationService computations;
204 27 Henning Blohm
205 41 Henning Blohm
        @Override
206
        protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
207
            //...
208
        }
209
210 27 Henning Blohm
}
211 41 Henning Blohm
212 27 Henning Blohm
</code></pre>
213 26 Henning Blohm
214 50 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. 
215 1 Henning Blohm
216 50 Henning Blohm
*Simply put: Spring AspectJ does it right where Spring AOP could not due to technical limitations.*
217
218
The whole subject is not completely trivial. For a deeper understanding we suggest to read:
219
220
* "Aspect Oriented Programming with Spring (Springsource)":http://docs.spring.io/spring/docs/2.5.x/reference/aop.html#aop-ataspectj
221
* "A starting point for pro and cons discussion (Stackoverflow)":http://stackoverflow.com/questions/1606559/spring-aop-vs-aspectj
222
* "Pitfalls of Spring proxying (external blog)":http://nurkiewicz.blogspot.de/2011/10/spring-pitfalls-proxying.html
223
224
h3. Making sure to configure for Spring AspectJ correctly
225
226
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.
227
228
This includes:
229
230
* the @<tx:annotation-driven/>@ annotation. Make sure it reads @<tx:annotation-driven mode="aspectj"/>@ (and possibly other attributes)
231
* the @<security:global-method-security/>@ annotation. Make sure it reads @<security:global-method-security mode="aspectj"/>@ (and possibly other attributes)
232
233
Use of the Spring aspects require to include the matching aspect libraries. In particular:
234
235
* When using Spring security aspects, add @org.springframework.security/aspects@ to your private includes
236
237
For example, an advanced Spring usage java component configuration may look like this:
238
239
<pre><code class="python">
240
com.zfabrik.component.type=com.zfabrik.java
241
java.privateReferences=\
242 52 Henning Blohm
    org.springframework.foundation,\
243
    org.springframework.orm,\
244
    org.springframework.web,\
245
    org.springframework.transaction,\
246
    org.springframework.security
247 50 Henning Blohm
248
java.privateIncludes=\
249
    org.springframework.security/config,\
250
    org.springframework.security/aspects,\
251
    org.springframework.security/taglibs,\
252
    org.springframework.security/web,\
253
    org.springframework.foundation/aspects,\
254
    org.springframework.foundation/context.support
255
256 51 Henning Blohm
#
257
# enables the processing of @Secured annotations in the implementation
258
#
259
aspectj.privateAspectPathByClass=\
260
	org.springframework.security.access.intercept.aspectj.aspect.AnnotationSecurityAspect
261
	
262
263 50 Henning Blohm
java.compile.order=java,spring_aspectj
264
</code></pre>
265 51 Henning Blohm
266
See also 
267
* "AspectJCompiler":http://www.z2-environment.net/javadoc/com.zfabrik.springframework!2Fjava/impl/com/zfabrik/impl/springframework/AspectJCompiler.html
268
* [[sample-spring-basic]] that also contains a Spring Security part.
269 50 Henning Blohm
270
271
h3. More important things to know about Spring with AspectJ
272
273 28 Henning Blohm
As always, there is some important pitfalls to watch out for. The Spring AspectJ integration roughly works as follows: 
274
275 1 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.
276 29 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.
277 1 Henning Blohm
278 29 Henning Blohm
This has a few dramatic consequences:
279
280
* 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.
281
* 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.
282 28 Henning Blohm
283
That's why: *Only use Spring AspectJ in implementations, i.e. under src.impl or src.test*
284
285 38 Henning Blohm
h2. Using a parent application context in a Web application application context
286 7 Henning Blohm
287
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/). 
288 8 Henning Blohm
289 47 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.
290 26 Henning Blohm
291 42 Henning Blohm
h2. Advanced notes
292 1 Henning Blohm
293 42 Henning Blohm
294
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:
295
296
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. 
297
298
The delegation sequence is always strictly along the references. 
299
300
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.
301
302
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.
303
304
Considering Spring there are two cases that mandate a non-shared use of libraries.
305
306
h3. Dangling Imports
307
308
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.
309
One example of such a library is the context support Spring module. See above for more details.
310
311
h3. Static Members Holding Singletons
312
313
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.
314
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.