EasyBeans is an open source implementation by ObjectWeb of the EJB3 container specification.

Project

Developer

Wiki

About

|
If you were logged in you would be able to see more operations.
|
|
|
Here, for example, the configuration relative to clustering of an embedded Easybeans (in JOnAS):
<easybeans xmlns=" http://org.ow2.easybeans.server">
<config />
<!-- Define components that will be started at runtime -->
<components>
<!-- Launch the cmi component providing a support of clustering -->
<cmi config="#config" lifecycleManaged="false" description="${jonas.name}" />
</components>
</easybeans>
The property 'description' should refer to the value of system property 'jonas.name'.
|
|
Description
|
Here, for example, the configuration relative to clustering of an embedded Easybeans (in JOnAS):
<easybeans xmlns=" http://org.ow2.easybeans.server">
<config />
<!-- Define components that will be started at runtime -->
<components>
<!-- Launch the cmi component providing a support of clustering -->
<cmi config="#config" lifecycleManaged="false" description="${jonas.name}" />
</components>
</easybeans>
The property 'description' should refer to the value of system property 'jonas.name'. |
Show » |
|
So that System properties could be searched, but other places too...
interface IPropertyResolver {
String resolve(String propertyName)
}
WDYT ?