xdocs/howto.xml (82 lines of code) (raw):

<?xml version="1.0"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <document> <properties> <title>Fulcrum YAAFI Avalon Container</title> <author email="siegfried.goeschl@it20one.at">Siegfried Goeschl</author> </properties> <body> <section name="How To"> <subsection name="How to write my own service?"> <ul> <li> Write your service interface and implementation using the Avalon Lifecycle interfaces. </li> <li> Add an entry to the role configuration file. This entry contains the information how YAAFI can instantiate and access the service </li> <li> Add an entry to the component configurating file if you need to configure your service. </li> </ul> </subsection> <subsection name="How can I embed YAAFI in an application?"> <p> The embedding is done by creating a YAAFI instance using the ServiceContainerFactory.create() method. Technically there are two ways to create a YAAFI container <ul> <li>Provide all paramters by the caller</li> <li>Use a containerConfiguration.xml</li> </ul> </p> <p> The following example creates a fully initialized and running YAAFI container with the given configuration parameters using a LOG4J logger. </p> <source> Logger logger = new Log4JLogger( org.apache.log4j.Logger.getLogger("YAAFI"); ServiceContainer container = null; ServiceContainerConfiguration config = new ServiceContainerConfiguration(); config.setLogger( logger ); config.setComponentRolesLocation( "./src/test/TestRoleConfig.xml" ); config.setComponentConfigurationLocation( "./src/test/TestComponentConfig.xml" ); config.setParametersLocation( "./src/test/TestParameters.properties" ); container = ServiceContainerFactory.create( config ); </source> <p> The following example uses a XML file to initialize the YAAFI container </p> <source> ServiceContainer container = null; ServiceContainerConfiguration config = new ServiceContainerConfiguration(); config.setContainerConfiguration( "./src/test/TestContainerConfig.xml", false ); container = ServiceContainerFactory.create( config ); </source> <p> At the end of day you have to terminate YAAFI </p> <source> ServiceContainerFactory.dispose(container); </source> </subsection> <subsection name="How can I embed YAAFI into Turbine?"> <p> In the 'contrib' directory there is a ready-to-use Turbine service which needs the following configuration (for Turbine 2.2) </p> <source> services.YaafiComponentService.classname=org.apache.turbine.services.yafficomponent.TurbineYaafiComponentService services.YaafiComponentService.componentRoles=./conf/componentRoles.xml services.YaafiComponentService.componentConfiguration=./conf/componentConfiguration.xml services.YaafiComponentService.parameters= </source> </subsection> </section> </body> </document>