[jboss-svn-commits] JBL Code SVN: r6640 - in labs/jbossesb/trunk/product/install: . jbossas
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Oct 6 07:20:40 EDT 2006
Author: mark.little at jboss.com
Date: 2006-10-06 07:20:37 -0400 (Fri, 06 Oct 2006)
New Revision: 6640
Added:
labs/jbossesb/trunk/product/install/jbossas/
labs/jbossesb/trunk/product/install/jbossas/properties-plugin.jar
labs/jbossesb/trunk/product/install/jbossas/properties-service.xml
Modified:
labs/jbossesb/trunk/product/install/README.TXT
Log:
Modified: labs/jbossesb/trunk/product/install/README.TXT
===================================================================
--- labs/jbossesb/trunk/product/install/README.TXT 2006-10-06 11:00:46 UTC (rev 6639)
+++ labs/jbossesb/trunk/product/install/README.TXT 2006-10-06 11:20:37 UTC (rev 6640)
@@ -23,19 +23,19 @@
HOW TO INSTALL JBoss ESB:
-1. Copy the <JBoss ESB Home>/dist/jbossesb-appl.ear to your <JBOSS_HOME>/server/all/deploy directory
+1. Copy the <JBoss ESB Home>/lib/jbossesb-appl.ear to your <JBOSS_HOME>/server/all/deploy directory
2. Edit the properties-service.xml in your <JBOSS_HOME>/server/all/deploy directory and add the following attribute entry:
<attribute name="URLList">
- ./conf/jbossEsb.properties
+ ./conf/jbossesb-properties.xml
</attribute>
- * This lets the JBoss ESB application know where to find its config file
+ * This lets the JBoss ESB application know where to find its config file
-3. Copy the <JBoss ESB HOME>/docs/install/conf/jbossEsb.properties to your <JBOSS_HOME>\server\all\conf directory
+3. Copy the <JBoss ESB HOME>/install/conf/jbossesb-properties.xml to your <JBOSS_HOME>\server\all\conf directory
-4. Load the database schema located in <JBoss ESB HOME>/docs/install/database/JBossESB-DB.sql into your PostGreSQL database create a new database of your choice.
+4. Load the database schema located in <JBoss ESB HOME>/install/database/JBossESB-DB.sql into your PostGreSQL database and create a new database of your choice.
-5. Copy the <JBoss ESB HOME>/doc/install/\deploy/JBossESB-DS.xml to your <JBOSS_HOME>/server/all/deploy directory.
+5. Copy the <JBoss ESB HOME>/install/deploy/JBossESB-DS.xml to your <JBOSS_HOME>/server/all/deploy directory.
6. Edit the JBossESB-DS.xml and change as required for your database settings
Added: labs/jbossesb/trunk/product/install/jbossas/properties-plugin.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/install/jbossas/properties-plugin.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: labs/jbossesb/trunk/product/install/jbossas/properties-service.xml
===================================================================
--- labs/jbossesb/trunk/product/install/jbossas/properties-service.xml 2006-10-06 11:00:46 UTC (rev 6639)
+++ labs/jbossesb/trunk/product/install/jbossas/properties-service.xml 2006-10-06 11:20:37 UTC (rev 6640)
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE server>
+<!-- $Id: properties-service.xml,v 1.5 2003/08/27 04:34:12 patriot1burke Exp $ -->
+
+<server>
+
+ <!-- ==================================================================== -->
+ <!-- PropertyEditorManager Service -->
+ <!-- ==================================================================== -->
+
+ <!--
+ | Allows access to the PropertyEditorManager, which is used when setting
+ | MBean attribute values from configuration.
+ -->
+
+ <mbean code="org.jboss.varia.property.PropertyEditorManagerService"
+ name="jboss:type=Service,name=PropertyEditorManager">
+
+ <!--
+ | Register and editor for each of the type_name=editor_type_name listed
+ | in properties file style convetion.
+
+ <attribute name="Editors">
+ java.net.URL=my.project.editors.URLPropertyEditor
+ </attribute>
+
+ -->
+
+ </mbean>
+
+
+ <!-- ==================================================================== -->
+ <!-- System Properties Service -->
+ <!-- ==================================================================== -->
+
+ <!--
+ | Allows rich access to system properties.
+ -->
+
+ <mbean code="org.jboss.varia.property.SystemPropertiesService"
+ name="jboss:type=Service,name=SystemProperties">
+
+ <!--
+ | Load properties from each of the given comma seperated URLs
+
+ <attribute name="URLList">
+ http://somehost/some-location.properties,
+ ./conf/somelocal.properties
+ </attribute>
+
+ -->
+
+ <!--
+ | Set raw properties file style properties.
+
+ <attribute name="Properties">
+
+ my.project.property=This is the value of my property
+ my.project.anotherProperty=This is the value of my other property
+
+ </attribute>
+
+ -->
+
+ </mbean>
+
+</server>
More information about the jboss-svn-commits
mailing list