[jboss-svn-commits] JBL Code SVN: r8990 - in labs/jbossesb/trunk/product/install: deploy and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Jan 23 11:03:29 EST 2007


Author: kurt.stam at jboss.com
Date: 2007-01-23 11:03:29 -0500 (Tue, 23 Jan 2007)
New Revision: 8990

Added:
   labs/jbossesb/trunk/product/install/deploy/hsqldb-ds.xml-original
Modified:
   labs/jbossesb/trunk/product/install/build.xml
Log:
Adding undeploy tasks

Modified: labs/jbossesb/trunk/product/install/build.xml
===================================================================
--- labs/jbossesb/trunk/product/install/build.xml	2007-01-23 14:33:34 UTC (rev 8989)
+++ labs/jbossesb/trunk/product/install/build.xml	2007-01-23 16:03:29 UTC (rev 8990)
@@ -1,16 +1,24 @@
-<project name="JBESB_Config" default="configure" basedir=".">
+<project name="JBESB_Config" default="deploy" basedir=".">
 
 	<!-- Set deployment properties filename -->
 	<property name="org.jboss.esb.deployment.properties" location="deployment.properties"/>
-
-	<!-- Load Build Properties File -->
-	<property file="${org.jboss.esb.deployment.properties}"/>
+	
 	<property name="org.jboss.esb.deployment.conf" location="conf"/>
 	<property name="org.jboss.esb.deployment.deploy" location="deploy"/>
 	<property name="org.jboss.esb.deployment.data" location="data"/>
+	<!-- Load Build Properties File -->
+	<property file="${org.jboss.esb.deployment.properties}"/>
 	
-	<target name="configure" depends="configure.jboss" />
-	<target name="configure.jboss" depends="check.config.jboss" unless="config.jboss.isset">
+	<target name="deploy" depends="jboss.sar.deploy" description="Wrapper for jboss.sar.deploy"/>
+	
+	<!--  Check if the user wants to deploy the config -->
+	<target name="jboss.config.check">
+		<condition property="config.jboss.isset">
+			<equals arg1="${org.jboss.esb.config.saronly.set}" arg2="true" trim="true"/>
+		</condition>
+	</target>
+	
+	<target name="jboss.config.deploy" unless="config.jboss.isset" description="Deploys the JBossESB configuration">
 		
 		<!-- conf -->
 		<copy  file="${org.jboss.esb.deployment.conf}/log4j.xml" overwrite="true"
@@ -37,19 +45,40 @@
 			   todir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy" />
 	</target>
 	
-	<!--  Check if the user wants to deploy the config  -->
-	<target name="check.config.jboss">
-		<condition property="config.jboss.isset">
-			<equals arg1="${org.jboss.esb.config.saronly.set}" arg2="true" trim="true"/>
-		</condition>
+	<target name="jboss.config.undeploy" unless="config.jboss.isset" description="Undeploys JBossESB configuration">
+		<echo>Please shutdown jboss before running this task!</echo>
+		
+		<!-- conf -->
+		<echo>Deleting jbossesb configuration</echo>
+		<delete>
+			<fileset dir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/conf" includes="jbossesb*.*"/>
+		</delete>
+		<echo>Deleting juddi properties file</echo>
+		<delete file="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/conf/juddi.properties"/>
+		<!-- data -->
+		<echo>Deleting hypersonic data</echo>
+		<delete>
+			<fileset dir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/data/hypersonic" includes="default*"/>
+		</delete>
+		<!-- deploy -->
+		<copy  file="${org.jboss.esb.deployment.deploy}/hsqldb-ds.xml-original" overwrite="true"
+			tofile="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy/hsqldb-ds.xml" />
 	</target>
 	
-	<target name="jboss.sar.deploy" depends="configure.jboss">
+	<target name="jboss.sar.deploy" depends="jboss.config.check,jboss.config.deploy" description="Deploys JBossESB configuration and 2 JBossESB sars to JBossAS">
 		<copy  todir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy">
 			<fileset dir="${org.jboss.esb.dist.lib}" includes="jbossesb-dependencies.sar/**"/></copy>
 		<copy  todir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy">
 			<fileset dir="${org.jboss.esb.dist.lib}" includes="jbossesb.sar/**"/></copy>
 		<touch file="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy/jbossesb.sar/META-INF/jboss-service.xml"/>
 	</target>
+	
+	<target name="jboss.sar.undeploy" depends="jboss.config.check,jboss.config.undeploy" description="Undeploys JBossESB configuration and 2 JBossESB sars">
+		<!-- deploy -->
+		<echo>Deleting jbossesb-dependencies.sar</echo>
+		<delete dir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy/jbossesb-dependencies.sar"/>
+		<echo>Deleting jbossesb.sar</echo>
+		<delete dir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy/jbossesb.sar"/>
+	</target>
 
 </project>

Added: labs/jbossesb/trunk/product/install/deploy/hsqldb-ds.xml-original
===================================================================
--- labs/jbossesb/trunk/product/install/deploy/hsqldb-ds.xml-original	                        (rev 0)
+++ labs/jbossesb/trunk/product/install/deploy/hsqldb-ds.xml-original	2007-01-23 16:03:29 UTC (rev 8990)
@@ -0,0 +1,113 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- The Hypersonic embedded database JCA connection factory config -->
+
+<!-- $Id: hsqldb-ds.xml 39791 2006-01-10 18:14:42Z dimitris $ -->
+
+<datasources>
+   <local-tx-datasource>
+
+      <!-- The jndi name of the DataSource, it is prefixed with java:/ -->
+      <!-- Datasources are not available outside the virtual machine -->
+      <jndi-name>DefaultDS</jndi-name>
+
+      <!-- For server mode db, allowing other processes to use hsqldb over tcp.
+      This requires the org.jboss.jdbc.HypersonicDatabase mbean.
+      <connection-url>jdbc:hsqldb:hsql://${jboss.bind.address}:1701</connection-url>
+      -->
+      <!-- For totally in-memory db, not saved when jboss stops. 
+      The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
+      <connection-url>jdbc:hsqldb:.</connection-url>
+      -->
+      <!-- For in-process persistent db, saved when jboss stops.
+      The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
+      -->
+      <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}localDB</connection-url>
+
+      <!-- The driver class -->
+      <driver-class>org.hsqldb.jdbcDriver</driver-class>
+
+      <!-- The login and password -->
+      <user-name>sa</user-name>
+      <password></password>
+
+      <!--example of how to specify class that determines if exception means connection should be destroyed-->
+      <!--exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyExceptionSorter</exception-sorter-class-name-->
+
+      <!-- this will be run before a managed connection is removed from the pool for use by a client-->
+      <!--<check-valid-connection-sql>select * from something</check-valid-connection-sql> -->
+
+      <!-- The minimum connections in a pool/sub-pool. Pools are lazily constructed on first use -->
+      <min-pool-size>5</min-pool-size>
+
+      <!-- The maximum connections in a pool/sub-pool -->
+      <max-pool-size>20</max-pool-size>
+
+      <!-- The time before an unused connection is destroyed -->
+      <!-- NOTE: This is the check period. It will be destroyed somewhere between 1x and 2x this timeout after last use -->
+      <!-- TEMPORARY FIX! - Disable idle connection removal, HSQLDB has a problem with not reaping threads on closed connections -->
+      <idle-timeout-minutes>0</idle-timeout-minutes>
+
+      <!-- sql to call when connection is created
+        <new-connection-sql>some arbitrary sql</new-connection-sql>
+      -->
+
+      <!-- sql to call on an existing pooled connection when it is obtained from pool 
+         <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql>
+      -->
+
+      <!-- example of how to specify a class that determines a connection is valid before it is handed out from the pool
+         <valid-connection-checker-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyValidConnectionChecker</valid-connection-checker-class-name>
+      -->
+
+      <!-- Whether to check all statements are closed when the connection is returned to the pool,
+           this is a debugging feature that should be turned off in production -->
+      <track-statements/>
+
+      <!-- Use the getConnection(user, pw) for logins
+        <application-managed-security/>
+      -->
+
+      <!-- Use the security domain defined in conf/login-config.xml -->
+      <security-domain>HsqlDbRealm</security-domain>
+
+      <!-- Use the security domain defined in conf/login-config.xml or the
+           getConnection(user, pw) for logins. The security domain takes precedence.
+        <security-domain-and-application>HsqlDbRealm</security-domain-and-application>
+      -->
+
+      <!-- HSQL DB benefits from prepared statement caching -->
+      <prepared-statement-cache-size>32</prepared-statement-cache-size>
+
+      <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) -->
+      <metadata>
+         <type-mapping>Hypersonic SQL</type-mapping>
+      </metadata>
+
+      <!-- When using in-process (standalone) mode -->
+      <depends>jboss:service=Hypersonic,database=localDB</depends>
+      <!-- Uncomment when using hsqldb in server mode
+      <depends>jboss:service=Hypersonic</depends>
+      -->
+   </local-tx-datasource>
+
+   <!-- Uncomment if you want hsqldb accessed over tcp (server mode)
+   <mbean code="org.jboss.jdbc.HypersonicDatabase" 
+     name="jboss:service=Hypersonic">
+     <attribute name="Port">1701</attribute>
+     <attribute name="BindAddress">${jboss.bind.address}</attribute>     
+     <attribute name="Silent">true</attribute>
+     <attribute name="Database">default</attribute>
+     <attribute name="Trace">false</attribute>
+     <attribute name="No_system_exit">true</attribute>
+   </mbean>
+   -->
+
+   <!-- For hsqldb accessed from jboss only, in-process (standalone) mode --> 
+   <mbean code="org.jboss.jdbc.HypersonicDatabase" 
+     name="jboss:service=Hypersonic,database=localDB">
+     <attribute name="Database">localDB</attribute>
+     <attribute name="InProcessMode">true</attribute>
+   </mbean>
+   
+</datasources>




More information about the jboss-svn-commits mailing list