This topic will take you through plugin transform,export and import using Apache Geronimo administration console. We have used an existing tutorial from tutorial section. Refer Stateless Session Bean tutorial for application development and deployment. Once done refer the illustration in this tutorial to export and import Java EE artifacts from Apache Geronimo administration console.
Clarification
Application client referred in this tutorial is actually a Web Application Client.
Starting from Geronimo V2.2, only car packages will be listed for export.
In this section, we will convert an existing applications into a plugin directly via console.
We are using Apache Geronimo V2.2 for this tutorial.
myplugins
in your hard drive.<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- 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. --> <geronimo-plugin-list xmlns:ns2="http://geronimo.apache.org/xml/ns/attributes-1.2" xmlns="http://geronimo.apache.org/xml/ns/plugins-1.3"> <plugin> <name>DBPool Database Plugin</name> <category>Sample</category> <description>This plugin sets up a Derby database pool</description> <url>http://www.apache.org</url> <author>Ashish Jain</author> <license osi-approved="true">The Apache Software License, Version 2.0</license> <plugin-artifact> <module-id> <groupId>console.dbpool</groupId> <artifactId>jdbc_userds</artifactId> <version>1.0</version> <type>car</type> </module-id> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>system-database</artifactId> <version>2.1.1</version> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>transaction</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>j2ee-server</artifactId> <type>car</type> </dependency> <source-repository>http://repo1.maven.org/maven2/</source-repository> <source-repository>file:/C:/myplugins</source-repository> <obsoletes> <groupId>console.dbpool</groupId> <artifactId>jdbc_userds</artifactId> <type>car</type> </obsoletes> </plugin-artifact> </plugin> <plugin> <name>Stateless EJB Sample Plugin</name> <category>Sample</category> <description>This plugin installs an EJB Sample</description> <url>http://www.apache.org</url> <author>Ashish Jain</author> <license osi-approved="true">The Apache Software License, Version 2.0</license> <plugin-artifact> <module-id> <groupId>default</groupId> <artifactId>StatelessSessionEJB</artifactId> <version>1.0</version> <type>car</type> </module-id> <dependency> <groupId>console.dbpool</groupId> <artifactId>jdbc_userds</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>openejb</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>system-database</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>tomcat6</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>axis</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>axis2</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>j2ee-corba-yoko</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>openjpa</artifactId> <type>car</type> </dependency> <source-repository>file:/C:/myplugins</source-repository> <source-repository>http://repo1.maven.org/maven2/</source-repository> <obsoletes> <groupId>default</groupId> <artifactId>StatelessSessionEJB</artifactId> <type>car</type> </obsoletes> </plugin-artifact> </plugin> <plugin> <name>Application Client</name> <category>Sample</category> <description>This plugin installs an App Client Sample</description> <url>http://www.apache.org</url> <author>Ashish Jain</author> <license osi-approved="true">The Apache Software License, Version 2.0</license> <plugin-artifact> <module-id> <groupId>default</groupId> <artifactId>ApplicationClient</artifactId> <version>1.0</version> <type>car</type> </module-id> <dependency> <groupId>default</groupId> <artifactId>StatelessSessionEJB</artifactId> <version>1.0</version> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>tomcat6</artifactId> <version>2.1.1</version> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>axis</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>axis2</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>openejb</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>j2ee-corba-yoko</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>openjpa</artifactId> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.configs</groupId> <artifactId>jasper</artifactId> <type>car</type> </dependency> <source-repository>file:/C:/myplugins</source-repository> <source-repository>http://repo1.maven.org/maven2/</source-repository> <obsoletes> <groupId>default</groupId> <artifactId>ApplicationClient</artifactId> <type>car</type> </obsoletes> </plugin-artifact> </plugin> <default-repository>http://geronimo.apache.org/plugins/geronimo-2.1/</default-repository> </geronimo-plugin-list>
Bookmark this on Delicious Digg this | Privacy Policy - Copyright © 2003-2011, The Apache Software Foundation, Licensed under ASL 2.0. |