Project

General

Profile

Smart props - DONE » History » Version 1

Henning Blohm, 07.12.2013 11:41

1 1 Henning Blohm
h1. Smart Props
2
3
The goal of this concept is to provide facilities to simplify sharing of component configuration while still being able to query resolved component configuration efficiently and with minimal resource usage.
4
5
h2. Design Draft
6
7
What we aim for is an extended _properties_ format that allows declarative inclusion of other component's configuration and the use of some expression language style substitution of vaiables. In other words, we strive for the use of a template processing language.
8
9
To extend this further, component declarations may indicate their template style via some "Shebang":http://de.wikipedia.org/wiki/Shebang, the default being *java.util.Properties*.
10
11
For example:
12
13
<pre>
14
#!velocity
15
com.zfabrik.component.type=com.zfabrik.java
16
17
#parse('mymodule/spring_template')
18
19
java.privateReferences=,\
20
  ${java_private_references},\
21
  somotherref
22
</pre>
23
24
h2. Configuration Resolution Constraints
25
26
Resolution of component configuration has certain practical bootstrapping limits due to when it is expected to happen (and what capabilities are available at that time). For example, the velocity engine may not depend on components that use velocity-based configuration formulation. 
27
28
Even more so, a repository that uses velocity-formulated component configurations may not be added to the system before the capability is known. But a repository providing the capability may make use of it.