Project

General

Profile

How to Spring » History » Version 43

Henning Blohm, 14.09.2012 12: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 35 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
7 38 Henning Blohm
h2. Pre-requisites
8 1 Henning Blohm
9 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
10 2 Henning Blohm
11 17 Henning Blohm
<pre><code class="python">
12 15 Henning Blohm
com.zfabrik.systemStates.participation=com.zfabrik.boot.main/sysrepo_up
13 3 Henning Blohm
14
# git stored component repository
15
com.zfabrik.component.type=com.zfabrik.gitcr
16
17
# true <=> optional repository. If gitcr.uri is invalid, then this gitcr will be ignore silently  
18
gitcr.optional=true
19
20
# this can also point to a remote repository like 
21
# ssh://myserver/some/git/repo
22
gitcr.uri=http://git.z2-environment.net/z2-addons.spring
23
24
# the git branch to use (e.g. 'master')
25
gitcr.branch=master
26
</code></pre>
27 15 Henning Blohm
28 3 Henning Blohm
For your own system, you may need to adapt the repository URL and the branch selection accordingly.
29
30 32 Henning Blohm
If that sounds like meaningless gibberish to you - sorry! Please consult the documentation at http://www.z2-environment.eu/v20doc and go back to [[First_steps_with_z2]].
31 3 Henning Blohm
32
33 9 Henning Blohm
When you added that repository the following modules are available:
34 4 Henning Blohm
35
* org.springframework.orm
36
* org.springframework.security
37
* org.springframework.foundation   
38
* org.springframework.transaction
39
* org.springframework.jdbc         
40
* org.springframework.web
41
* com.zfabrik.springframework      
42
* com.zfabrik.springframework.web  
43
44 1 Henning Blohm
45
With the exception of those starting with "com.zfabrik", these do, more or less, correspond to the typical Spring modules found out there. 
46
47 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:
48 10 Henning Blohm
49 40 Henning Blohm
* [[sample-spring-basic]]
50
* [[sample-jta-spring]]
51 10 Henning Blohm
52 38 Henning Blohm
h2. Using Spring in Web applications
53 2 Henning Blohm
54
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. 
55 5 Henning Blohm
56
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 
57
context initialized as the Web app is started.
58
59
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*:
60
61 17 Henning Blohm
<pre><code class="python">
62 5 Henning Blohm
java.privateReferences=\
63
	com.zfabrik.springframework.web,\
64
	org.springframework.foundation,\
65
	org.springframework.web
66
67 11 Henning Blohm
</code></pre>
68 5 Henning Blohm
69
The reference to *com.zfabrik.springframework.web* is not strictly needed but adds the following capabilities:
70
71 7 Henning Blohm
* You implicitly get *com.zfabrik.springframework*, i.e. the integration features described below
72 5 Henning Blohm
73 7 Henning Blohm
* You can use a parent application context to your Web application application context as easily as you would hope (see below).
74
75
76 19 Henning Blohm
h2. Using Spring Context Support
77 7 Henning Blohm
78 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_.
79
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.
80 7 Henning Blohm
81 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:
82
83
<pre><code class="python">
84
java.privateIncludes=\
85
   org.springframework.foundation/context.support
86
</code></pre>
87
88
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
89
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. 
90
91 38 Henning Blohm
h2. Using Spring in re-use modules
92 19 Henning Blohm
93 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.
94
95 22 Henning Blohm
*Define an Application Context in a Java Module*
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 22 Henning Blohm
*Starting an Application Context*
100 1 Henning Blohm
101 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
102
103
<pre><code class="python">
104
com.zfabrik.component.type=org.springframework.context
105
106
#
107
# context config location is where the context is 
108
# 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
121
<pre><code class="python">
122
com.zfabrik.component.type=org.springframework.bean
123
124
#
125
# the context that defines the bean (more than one
126
# bean can be exposed like this)
127
#
128 24 Henning Blohm
bean.context=<module name>/applicationContext
129 23 Henning Blohm
130
#
131
# the bean name
132
#
133 25 Henning Blohm
bean.name=<bean name>
134 23 Henning Blohm
</code></pre>
135
136
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.
137
138 38 Henning Blohm
*Importing a bean or just any component*
139 1 Henning Blohm
140 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:
141 1 Henning Blohm
142 25 Henning Blohm
<pre><code class="xml">
143
<bean id="beanId" class="com.zfabrik.springframework.ComponentFactoryBean">
144
  <property name="componentName" value="<module>/<name>" />
145
  <property name="className" value="my.Class" />
146
</bean>
147
</code></pre>
148 23 Henning Blohm
149 26 Henning Blohm
Ok, so far so good. Next subject is how to add more configuration magic to all of this.
150 2 Henning Blohm
151 38 Henning Blohm
h2. Using Spring's AspectJ configuration
152 1 Henning Blohm
153 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. 
154 1 Henning Blohm
155 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 - soemthing where you can so easily fool yourself.
156
157
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 parcitular the compiler settings:
158
159
<pre><code class="python">
160
java.privateReferences=\
161
	com.zfabrik.springframework,\
162
	org.springframework.foundation,\
163
	org.springframework.orm,\
164
	org.springframework.transaction
165
166
java.privateIncludes=\
167
	org.springframework.foundation/aspects
168
169
	
170
java.compile.order=java,spring_aspectj
171
</code></pre>
172
173
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.
174
175 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:
176 27 Henning Blohm
177
<pre><code class="java">
178 1 Henning Blohm
@Configurable
179 41 Henning Blohm
public class ControllerServlet extends HttpServlet {
180
        @Autowired
181
        private IComputationService computations;
182 27 Henning Blohm
183 41 Henning Blohm
        @Override
184
        protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
185
            //...
186
        }
187
188 27 Henning Blohm
}
189 41 Henning Blohm
190 27 Henning Blohm
</code></pre>
191 26 Henning Blohm
192 38 Henning Blohm
*Important things to know about Spring with AspectJ*
193 28 Henning Blohm
194 31 Henning Blohm
As always, there is some important pitfalls to watch out for. The Spring AspectJ integration roughly works as follows: 
195 28 Henning Blohm
196
# 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.
197
# 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.
198 1 Henning Blohm
199 29 Henning Blohm
This has a few dramatic consequences:
200 1 Henning Blohm
201 29 Henning Blohm
* 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.
202
* 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.
203
204
That's why: *Only use Spring AspectJ in implementations, i.e. under src.impl or src.test*
205 28 Henning Blohm
206
207
208 38 Henning Blohm
h2. Using a parent application context in a Web application application context
209 7 Henning Blohm
210
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/). 
211 8 Henning Blohm
212 7 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 http://z2spring.z2-environment.net/javadoc/com.zfabrik.springframework.web!2Fjava/api/com/zfabrik/springframework/web/ComponentParentContextContextLoaderListener.html.
213 26 Henning Blohm
214 42 Henning Blohm
h2. Advanced notes
215 1 Henning Blohm
216 42 Henning Blohm
217
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:
218
219
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. 
220
221
The delegation sequence is always strictly along the references. 
222
223
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.
224
225
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.
226
227
Considering Spring there are two cases that mandate a non-shared use of libraries.
228
229
h3. Dangling Imports
230
231
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.
232
One example of such a library is the context support Spring module. See above for more details.
233
234
h3. Static Members Holding Singletons
235
236
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.
237
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.