exo-jcr SVN: r828 - in jcr/branches/1.12.0-JBC/component/core/src: test/resources/conf/standalone and 1 other directory.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-11-24 08:50:27 -0500 (Tue, 24 Nov 2009)
New Revision: 828
Modified:
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java
jcr/branches/1.12.0-JBC/component/core/src/test/resources/conf/standalone/test-configuration.xml
Log:
EXOJCR-199: LOG warn to debug; javadocs
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java 2009-11-24 13:22:15 UTC (rev 827)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java 2009-11-24 13:50:27 UTC (rev 828)
@@ -701,7 +701,7 @@
childNode.put(ITEM_ID, data.getIdentifier());
// 4. update all child nodes
- updateTreePath(node, data.getQPath());//treePrint(node)
+ updateTreePath(node, data.getQPath()); //treePrint(node)
// TODO cleanup
// for (Node<Serializable, Object> child : node.getChildren())
@@ -737,7 +737,12 @@
// }
}
- //Update NodeData after update mixin
+ /**
+ * Update NodeData after update mixin. Used for JBossCache persistence only.
+ *
+ * @param data NodeData
+ * @throws RepositoryException if error occurs.
+ */
public void updateMixin(NodeData data) throws RepositoryException
{
startBatch();
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java 2009-11-24 13:22:15 UTC (rev 827)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java 2009-11-24 13:50:27 UTC (rev 828)
@@ -107,7 +107,10 @@
switch (m.getType())
{
case PUT_DATA :
- //LOG.warn("PUT_DATA modification");
+ if (LOG.isDebugEnabled())
+ {
+ LOG.debug("PUT_DATA modification");
+ }
// Process references
// if (m.getFqn().get(0).equals(JBossCacheStorage.REFS))
// {
@@ -115,7 +118,10 @@
// }
break;
case PUT_DATA_ERASE :
- LOG.warn("PUT_DATA_ERASE modification");
+ if (LOG.isDebugEnabled())
+ {
+ LOG.debug("PUT_DATA_ERASE modification");
+ }
break;
case PUT_KEY_VALUE :
if (m.getFqn().size() == 2)
@@ -143,10 +149,16 @@
break;
case REMOVE_DATA :
- LOG.warn("REMOVE_DATA modification");
+ if (LOG.isDebugEnabled())
+ {
+ LOG.debug("REMOVE_DATA modification");
+ }
break;
case REMOVE_KEY_VALUE :
- LOG.warn("REMOVE_KEY_VALUE modification");
+ if (LOG.isDebugEnabled())
+ {
+ LOG.debug("REMOVE_KEY_VALUE modification");
+ }
break;
case REMOVE_NODE :
@@ -161,7 +173,10 @@
break;
case MOVE :
- LOG.warn("MOVE modification");
+ if (LOG.isDebugEnabled())
+ {
+ LOG.debug("MOVE modification");
+ }
break;
default :
throw new CacheException("Unknown modification " + m.getType());
@@ -300,9 +315,6 @@
// time whether node is moved or just updated. This
// solution is used as the fastest among other.
conn.rename((NodeData)item);
-
- //update node data
- //conn.update((NodeData)item);
}
else
{
@@ -449,7 +461,10 @@
else
{
attrs = null;
- LOG.warn("Unexpected Fqn asked " + name);
+ if (LOG.isDebugEnabled())
+ {
+ LOG.warn("Unexpected Fqn asked " + name);
+ }
}
}
else if (name.get(0).equals(Fqn.ROOT) || name.get(0).equals(JBossCacheStorage.PROPS)
@@ -574,7 +589,10 @@
else
{
exists = false;
- LOG.warn("Unexpected Fqn asked " + name);
+ if (LOG.isDebugEnabled())
+ {
+ LOG.debug("Unexpected Fqn asked " + name);
+ }
}
}
else if (name.get(0).equals(Fqn.ROOT) || name.get(0).equals(JBossCacheStorage.PROPS)
Modified: jcr/branches/1.12.0-JBC/component/core/src/test/resources/conf/standalone/test-configuration.xml
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/test/resources/conf/standalone/test-configuration.xml 2009-11-24 13:22:15 UTC (rev 827)
+++ jcr/branches/1.12.0-JBC/component/core/src/test/resources/conf/standalone/test-configuration.xml 2009-11-24 13:50:27 UTC (rev 828)
@@ -54,7 +54,8 @@
<property name="log4j.appender.file.layout.ConversionPattern"
value="%d{dd.MM.yyyy HH:mm:ss} *%-5p* [%t] %c{1}: %m (%F, line %L) %n"/>
- <property name="log4j.category.jcr.JBossCacheStorageConnection" value="DEBUG"/>
+ <property name="log4j.category.jcr.JBossCacheStorageConnection1" value="DEBUG"/>
+
<!-- property name="log4j.category.jcr.NodeImpl" value="DEBUG"/ -->
</properties-param>
16 years, 7 months
exo-jcr SVN: r827 - in jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl: storage/jbosscache and 1 other directory.
by do-not-reply@jboss.org
Author: skabashnyuk
Date: 2009-11-24 08:22:15 -0500 (Tue, 24 Nov 2009)
New Revision: 827
Modified:
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/JBossCacheWorkspaceDataManager.java
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java
Log:
EXOJCR-246 : NodeData update if mixin changed
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/JBossCacheWorkspaceDataManager.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/JBossCacheWorkspaceDataManager.java 2009-11-24 10:26:19 UTC (rev 826)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/JBossCacheWorkspaceDataManager.java 2009-11-24 13:22:15 UTC (rev 827)
@@ -205,6 +205,10 @@
{
doRename(data, conn, addedNodes);
}
+ else if (itemState.isMixinChanged())
+ {
+ doUpdateMixin(data, conn);
+ }
if (LOG.isDebugEnabled())
LOG.debug(ItemState.nameFromValue(itemState.getState()) + " " + (System.currentTimeMillis() - start)
@@ -226,7 +230,7 @@
// help to GC
addedNodes.clear();
}
-
+
notifySaveItems(changesLog);
}
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java 2009-11-24 10:26:19 UTC (rev 826)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java 2009-11-24 13:22:15 UTC (rev 827)
@@ -18,12 +18,9 @@
*/
package org.exoplatform.services.jcr.impl.dataflow.persistent;
-import org.exoplatform.services.jcr.dataflow.ChangesLogIterator;
-import org.exoplatform.services.jcr.dataflow.CompositeChangesLog;
import org.exoplatform.services.jcr.dataflow.ItemState;
import org.exoplatform.services.jcr.dataflow.ItemStateChangesLog;
import org.exoplatform.services.jcr.dataflow.PersistentDataManager;
-import org.exoplatform.services.jcr.dataflow.PlainChangesLog;
import org.exoplatform.services.jcr.dataflow.ReadOnlyThroughChanges;
import org.exoplatform.services.jcr.dataflow.persistent.ItemsPersistenceListener;
import org.exoplatform.services.jcr.dataflow.persistent.ItemsPersistenceListenerFilter;
@@ -37,6 +34,7 @@
import org.exoplatform.services.jcr.impl.core.lock.LockData;
import org.exoplatform.services.jcr.impl.dataflow.TransientItemData;
import org.exoplatform.services.jcr.impl.storage.SystemDataContainerHolder;
+import org.exoplatform.services.jcr.impl.storage.jbosscache.JBossCacheStorageConnection;
import org.exoplatform.services.jcr.storage.WorkspaceDataContainer;
import org.exoplatform.services.jcr.storage.WorkspaceStorageConnection;
import org.exoplatform.services.log.ExoLogger;
@@ -449,6 +447,29 @@
}
/**
+ * Performs updating of node data after mixin update.
+ *
+ * @param item
+ * to update
+ * @param con
+ * connection
+ * @throws RepositoryException
+ * @throws InvalidItemStateException
+ * if the item not found TODO compare persistedVersion number
+ */
+ protected void doUpdateMixin(final TransientItemData item, final WorkspaceStorageConnection con)
+ throws RepositoryException, InvalidItemStateException
+ {
+
+ if (item.isNode())
+ {
+ //TODO remove cast
+ ((JBossCacheStorageConnection)con).updateMixin((NodeData)item);
+ }
+
+ }
+
+ /**
* Performs actual item data adding.
*
* @param item
@@ -522,8 +543,8 @@
mandatoryListeners.add((MandatoryItemsPersistenceListener)listener);
else
listeners.add(listener);
-// if (LOG.isDebugEnabled())
- LOG.info("Workspace '" + this.dataContainer.getName() + "' listener registered: " + listener);
+ // if (LOG.isDebugEnabled())
+ LOG.info("Workspace '" + this.dataContainer.getName() + "' listener registered: " + listener);
}
public void removeItemPersistenceListener(ItemsPersistenceListener listener)
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java 2009-11-24 10:26:19 UTC (rev 826)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java 2009-11-24 13:22:15 UTC (rev 827)
@@ -737,6 +737,32 @@
// }
}
+ //Update NodeData after update mixin
+ public void updateMixin(NodeData data) throws RepositoryException
+ {
+ startBatch();
+
+ String nodeId = data.getIdentifier();
+
+ //1. Update node and also get old nodeData
+ Node<Serializable, Object> node = nodesRoot.getChild(makeNodeFqn(nodeId));
+ if (node == null)
+ {
+ throw new InvalidItemStateException("Node is not exist" + data.getQPath().getAsString());
+ }
+
+ NodeData prevData = (NodeData)node.put(ITEM_DATA, data);
+ if (prevData == null)
+ {
+ throw new RepositoryException("FATAL NodeData is empty " + data.getQPath().getAsString());
+ }
+
+ if (data instanceof TransientNodeData)
+ {
+ ((TransientNodeData)data).setState(TransientNodeData.TRANSITIVE_MIXIN_UPDATED);
+ }
+ }
+
/**
* Update Nodes tree with new path.
*
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java 2009-11-24 10:26:19 UTC (rev 826)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java 2009-11-24 13:22:15 UTC (rev 827)
@@ -120,6 +120,17 @@
case PUT_KEY_VALUE :
if (m.getFqn().size() == 2)
{
+ // if (m.getValue() instanceof TransientNodeData)
+ // {
+ // //Check flag it's mixin update for node, if this flag set we have node need to
+ // // update node
+ // int skipMask = TransientNodeData.TRANSITIVE_MIXIN_UPDATED;
+ // if ((((TransientNodeData)m.getValue()).getState() & skipMask) > 0)
+ // {
+ //
+ // continue;
+ // }
+ // }
if (isUpdate(m, (JDBCStorageConnection)conn))
{
doUpdate(m, conn);
16 years, 7 months
exo-jcr SVN: r826 - core/trunk.
by do-not-reply@jboss.org
Author: dkatayev
Date: 2009-11-24 05:26:19 -0500 (Tue, 24 Nov 2009)
New Revision: 826
Modified:
core/trunk/pom.xml
Log:
hibernate dependency updated to 3.3.2.GA
Modified: core/trunk/pom.xml
===================================================================
--- core/trunk/pom.xml 2009-11-24 10:11:15 UTC (rev 825)
+++ core/trunk/pom.xml 2009-11-24 10:26:19 UTC (rev 826)
@@ -170,7 +170,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
- <version>3.3.1.GA</version>
+ <version>3.3.2.GA</version>
</dependency>
<dependency>
16 years, 7 months
exo-jcr SVN: r825 - jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache.
by do-not-reply@jboss.org
Author: skabashnyuk
Date: 2009-11-24 05:11:15 -0500 (Tue, 24 Nov 2009)
New Revision: 825
Modified:
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java
Log:
EXOJCR-199 : TODO for ACL check
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java 2009-11-24 10:10:05 UTC (rev 824)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JBossCacheStorageConnection.java 2009-11-24 10:11:15 UTC (rev 825)
@@ -761,6 +761,7 @@
if (!prevData.getQPath().equals(nodePath))
{
// recreate with new path for child Nodes only
+ // TODO check ACL
nodePath =
QPath.makeChildPath(rootPath,
prevData.getQPath().getEntries()[prevData.getQPath().getEntries().length - 1]);
16 years, 7 months
exo-jcr SVN: r824 - jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache.
by do-not-reply@jboss.org
Author: nzamosenchuk
Date: 2009-11-24 05:10:05 -0500 (Tue, 24 Nov 2009)
New Revision: 824
Modified:
jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java
Log:
EXOJCR-199: move operation fix.
Modified: jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java
===================================================================
--- jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java 2009-11-24 10:01:08 UTC (rev 823)
+++ jcr/branches/1.12.0-JBC/component/core/src/main/java/org/exoplatform/services/jcr/impl/storage/jbosscache/JDBCCacheLoader.java 2009-11-24 10:10:05 UTC (rev 824)
@@ -282,8 +282,16 @@
// update if it's non transitive update
if (item.isNode())
{
+ // conn.rename() is used to update all the fields in DB.
+ // Original conn.update() will be matched as deprecated,
+ // and conn.rename() should be renamed to update. This
+ // is done to solve the issue, when we need to guess each
+ // time whether node is moved or just updated. This
+ // solution is used as the fastest among other.
+ conn.rename((NodeData)item);
+
//update node data
- conn.update((NodeData)item);
+ //conn.update((NodeData)item);
}
else
{
16 years, 7 months
exo-jcr SVN: r823 - jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/load/perf.
by do-not-reply@jboss.org
Author: tolusha
Date: 2009-11-24 05:01:08 -0500 (Tue, 24 Nov 2009)
New Revision: 823
Added:
jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/load/perf/TestGetNodesPerf.java
Log:
EXOJCR-221: getNodes from different session perfomance test
Added: jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/load/perf/TestGetNodesPerf.java
===================================================================
--- jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/load/perf/TestGetNodesPerf.java (rev 0)
+++ jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/load/perf/TestGetNodesPerf.java 2009-11-24 10:01:08 UTC (rev 823)
@@ -0,0 +1,120 @@
+/*
+ * Copyright (C) 2003-2009 eXo Platform SAS.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License
+ * as published by the Free Software Foundation; either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see<http://www.gnu.org/licenses/>.
+ */
+package org.exoplatform.services.jcr.load.perf;
+
+import org.exoplatform.services.jcr.JcrAPIBaseTest;
+import org.exoplatform.services.jcr.impl.core.SessionImpl;
+
+import java.io.File;
+import java.io.PrintWriter;
+
+import javax.jcr.Node;
+import javax.jcr.PathNotFoundException;
+import javax.jcr.RepositoryException;
+import javax.jcr.Session;
+
+/**
+ * Created by The eXo Platform SAS.
+ *
+ * <br/>Date: 2009
+ *
+ * @author <a href="mailto:anatoliy.bazko@exoplatform.com.ua">Anatoliy Bazko</a>
+ * @version $Id$
+ */
+public class TestGetNodesPerf extends JcrAPIBaseTest
+{
+ private static final String testName = "testRoot";
+
+ private static final int sessionCount = 20;
+
+ private Session[] sessions = new Session[sessionCount];
+
+ private GetNodesThread[] threads = new GetNodesThread[sessionCount];
+
+ public void testGetNodes() throws Exception
+ {
+ for (int i = 0; i < sessionCount; i++)
+ {
+ sessions[i] = (SessionImpl)repository.login(credentials, "ws");
+ }
+
+ Node testRoot = session.getRootNode().addNode(testName);
+ session.save();
+
+ log.info("adding...");
+ int nodesCount = 50000;
+ for (int i = 0; i < nodesCount; i++)
+ {
+ testRoot.addNode("_" + i + "_node");
+ }
+ log.info("saving...");
+ session.save();
+
+ log.info("waiting for 10 seconds...");
+ Thread.sleep(10000);
+
+ log.info("getting nodes...");
+ for (int i = 0; i < sessionCount; i++)
+ {
+ threads[i] = new GetNodesThread(sessions[i]);
+ threads[i].start();
+ }
+
+ outer : while (true)
+ {
+ for (int i = 0; i < sessionCount; i++)
+ {
+ if (threads[i].isAlive())
+ {
+ Thread.sleep(1000);
+ continue outer;
+ }
+ }
+
+ break;
+ }
+
+ log.info("Test finished");
+ }
+
+ private class GetNodesThread extends Thread
+ {
+ private final Session curSession;
+
+ GetNodesThread(Session session)
+ {
+ this.curSession = session;
+ }
+
+ @Override
+ public void run()
+ {
+ try
+ {
+ Node testRoot = curSession.getRootNode().getNode(testName);
+
+ long startTime = System.currentTimeMillis();
+ testRoot.getNodes();
+ log.info("Total time: " + (System.currentTimeMillis() - startTime) / 1000 + "s");
+ }
+ catch (RepositoryException e)
+ {
+ e.printStackTrace();
+ }
+ }
+ }
+}
Property changes on: jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/load/perf/TestGetNodesPerf.java
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
16 years, 7 months
exo-jcr SVN: r822 - in jcr/trunk/applications: java/exo.jcr.applications.backupconsole/bin and 1 other directory.
by do-not-reply@jboss.org
Author: dkatayev
Date: 2009-11-24 04:49:16 -0500 (Tue, 24 Nov 2009)
New Revision: 822
Modified:
jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd
jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh
jcr/trunk/applications/product-exo-jcr-as-jboss-ear.xml
jcr/trunk/applications/product-exo-jcr-as-jonas-ear.xml
jcr/trunk/applications/product-exo-jcr-as-tomcat6.xml
Log:
EXOJCR-234 Assemblies and scripts updated
Modified: jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd 2009-11-24 09:45:33 UTC (rev 821)
+++ jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd 2009-11-24 09:49:16 UTC (rev 822)
@@ -1 +1 @@
-java -jar exo.jcr.applications.backupconsole-1.12.0-Beta03-SNAPSHOT.jar %*
+java -jar exo.jcr.applications.backupconsole-1.12.0-Beta04-SNAPSHOT.jar %*
Modified: jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh 2009-11-24 09:45:33 UTC (rev 821)
+++ jcr/trunk/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh 2009-11-24 09:49:16 UTC (rev 822)
@@ -1,3 +1,3 @@
#!/bin/sh
-java -jar exo.jcr.applications.backupconsole-1.12.0-Beta03-SNAPSHOT.jar $*
+java -jar exo.jcr.applications.backupconsole-1.12.0-Beta04-SNAPSHOT.jar $*
Modified: jcr/trunk/applications/product-exo-jcr-as-jboss-ear.xml
===================================================================
--- jcr/trunk/applications/product-exo-jcr-as-jboss-ear.xml 2009-11-24 09:45:33 UTC (rev 821)
+++ jcr/trunk/applications/product-exo-jcr-as-jboss-ear.xml 2009-11-24 09:49:16 UTC (rev 822)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta04-SNAPSHOT</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/trunk/applications/product-exo-jcr-as-jonas-ear.xml
===================================================================
--- jcr/trunk/applications/product-exo-jcr-as-jonas-ear.xml 2009-11-24 09:45:33 UTC (rev 821)
+++ jcr/trunk/applications/product-exo-jcr-as-jonas-ear.xml 2009-11-24 09:49:16 UTC (rev 822)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta04-SNAPSHOT</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/trunk/applications/product-exo-jcr-as-tomcat6.xml
===================================================================
--- jcr/trunk/applications/product-exo-jcr-as-tomcat6.xml 2009-11-24 09:45:33 UTC (rev 821)
+++ jcr/trunk/applications/product-exo-jcr-as-tomcat6.xml 2009-11-24 09:49:16 UTC (rev 822)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
16 years, 7 months
exo-jcr SVN: r821 - in jcr/tags/1.12.0-Beta03/applications: java/exo.jcr.applications.backupconsole/bin and 1 other directory.
by do-not-reply@jboss.org
Author: dkatayev
Date: 2009-11-24 04:45:33 -0500 (Tue, 24 Nov 2009)
New Revision: 821
Modified:
jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd
jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh
jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jboss-ear.xml
jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jonas-ear.xml
jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-tomcat6.xml
Log:
EXOJCR-234 Assemblies and scripts updated
Modified: jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd
===================================================================
--- jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd 2009-11-24 09:34:44 UTC (rev 820)
+++ jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd 2009-11-24 09:45:33 UTC (rev 821)
@@ -1 +1 @@
-java -jar exo.jcr.applications.backupconsole-1.12.0-Beta03-SNAPSHOT.jar %*
+java -jar exo.jcr.applications.backupconsole-1.12.0-Beta03.jar %*
Modified: jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh
===================================================================
--- jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh 2009-11-24 09:34:44 UTC (rev 820)
+++ jcr/tags/1.12.0-Beta03/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh 2009-11-24 09:45:33 UTC (rev 821)
@@ -1,3 +1,3 @@
#!/bin/sh
-java -jar exo.jcr.applications.backupconsole-1.12.0-Beta03-SNAPSHOT.jar $*
+java -jar exo.jcr.applications.backupconsole-1.12.0-Beta03.jar $*
Modified: jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jboss-ear.xml
===================================================================
--- jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jboss-ear.xml 2009-11-24 09:34:44 UTC (rev 820)
+++ jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jboss-ear.xml 2009-11-24 09:45:33 UTC (rev 821)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta03</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jonas-ear.xml
===================================================================
--- jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jonas-ear.xml 2009-11-24 09:34:44 UTC (rev 820)
+++ jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-jonas-ear.xml 2009-11-24 09:45:33 UTC (rev 821)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta03</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-tomcat6.xml
===================================================================
--- jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-tomcat6.xml 2009-11-24 09:34:44 UTC (rev 820)
+++ jcr/tags/1.12.0-Beta03/applications/product-exo-jcr-as-tomcat6.xml 2009-11-24 09:45:33 UTC (rev 821)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta03-SNAPSHOT</version>
+ <version>1.12.0-Beta03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
16 years, 7 months
exo-jcr SVN: r820 - in core/tags/2.3.0-Beta03/exo.core.component.database/src: main/resources/conf/portal and 2 other directories.
by do-not-reply@jboss.org
Author: dkatayev
Date: 2009-11-24 04:34:44 -0500 (Tue, 24 Nov 2009)
New Revision: 820
Added:
core/tags/2.3.0-Beta03/exo.core.component.database/src/test/resources/conf/standalone/
Removed:
core/tags/2.3.0-Beta03/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml
core/tags/2.3.0-Beta03/exo.core.component.database/src/main/resources/conf/standalone/
Modified:
core/tags/2.3.0-Beta03/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml
Log:
EXOJCR-259 test configuration moved
Deleted: core/tags/2.3.0-Beta03/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml
===================================================================
--- core/tags/2.3.0-Beta03/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml 2009-11-24 09:04:33 UTC (rev 819)
+++ core/tags/2.3.0-Beta03/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml 2009-11-24 09:34:44 UTC (rev 820)
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-
- Copyright (C) 2009 eXo Platform SAS.
-
- This is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as
- published by the Free Software Foundation; either version 2.1 of
- the License, or (at your option) any later version.
-
- This software is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this software; if not, write to the Free
- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-
--->
-<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd http://www.exoplaform.org/xml/ns/kernel_1_0.xsd"
- xmlns="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd">
- <component>
- <key>org.exoplatform.services.database.HibernateService</key>
- <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
- <init-params>
- <properties-param>
- <name>hibernate.properties</name>
- <description>Default Hibernate Service</description>
- <property name="hibernate.show_sql" value="false" />
- <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
- <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/portal" />
- <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
- <property name="hibernate.connection.autocommit" value="true" />
- <property name="hibernate.connection.username" value="sa" />
- <property name="hibernate.connection.password" value="" />
- <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
- <property name="hibernate.c3p0.min_size" value="5" />
- <property name="hibernate.c3p0.max_size" value="20" />
- <property name="hibernate.c3p0.timeout" value="1800" />
- <property name="hibernate.c3p0.max_statements" value="50" />
- </properties-param>
- </init-params>
- </component>
- <component>
- <key>jcr.datasource</key>
- <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
- <init-params>
- <properties-param>
- <name>hibernate.properties</name>
- <description>JCR Workspace datasource</description>
- <property name="hibernate.show_sql" value="false" />
- <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
- <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/jcr" />
- <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
- <property name="hibernate.connection.autocommit" value="true" />
- <property name="hibernate.connection.username" value="sa" />
- <property name="hibernate.connection.password" value="" />
- <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
- <property name="hibernate.c3p0.min_size" value="5" />
- <property name="hibernate.c3p0.max_size" value="20" />
- <property name="hibernate.c3p0.timeout" value="1800" />
- <property name="hibernate.c3p0.max_statements" value="50" />
- </properties-param>
- </init-params>
- </component>
- <!-- for portal container -->
- <import>classpath:/conf/standalone/test-configuration.xml</import>
-</configuration>
\ No newline at end of file
Modified: core/tags/2.3.0-Beta03/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml
===================================================================
--- core/tags/2.3.0-Beta03/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml 2009-11-24 09:04:33 UTC (rev 819)
+++ core/tags/2.3.0-Beta03/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml 2009-11-24 09:34:44 UTC (rev 820)
@@ -79,4 +79,50 @@
</value-param>
</init-params>
</component>
+ <component>
+ <key>org.exoplatform.services.database.HibernateService</key>
+ <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
+ <init-params>
+ <properties-param>
+ <name>hibernate.properties</name>
+ <description>Default Hibernate Service</description>
+ <property name="hibernate.show_sql" value="false" />
+ <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
+ <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/portal" />
+ <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
+ <property name="hibernate.connection.autocommit" value="true" />
+ <property name="hibernate.connection.username" value="sa" />
+ <property name="hibernate.connection.password" value="" />
+ <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
+ <property name="hibernate.c3p0.min_size" value="5" />
+ <property name="hibernate.c3p0.max_size" value="20" />
+ <property name="hibernate.c3p0.timeout" value="1800" />
+ <property name="hibernate.c3p0.max_statements" value="50" />
+ </properties-param>
+ </init-params>
+ </component>
+ <component>
+ <key>jcr.datasource</key>
+ <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
+ <init-params>
+ <properties-param>
+ <name>hibernate.properties</name>
+ <description>JCR Workspace datasource</description>
+ <property name="hibernate.show_sql" value="false" />
+ <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
+ <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/jcr" />
+ <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
+ <property name="hibernate.connection.autocommit" value="true" />
+ <property name="hibernate.connection.username" value="sa" />
+ <property name="hibernate.connection.password" value="" />
+ <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
+ <property name="hibernate.c3p0.min_size" value="5" />
+ <property name="hibernate.c3p0.max_size" value="20" />
+ <property name="hibernate.c3p0.timeout" value="1800" />
+ <property name="hibernate.c3p0.max_statements" value="50" />
+ </properties-param>
+ </init-params>
+ </component>
+ <!-- for portal container -->
+ <import>classpath:/conf/standalone/test-configuration.xml</import>
</configuration>
Copied: core/tags/2.3.0-Beta03/exo.core.component.database/src/test/resources/conf/standalone (from rev 819, core/tags/2.3.0-Beta03/exo.core.component.database/src/main/resources/conf/standalone)
16 years, 7 months
exo-jcr SVN: r819 - in core/trunk/exo.core.component.database/src: main/resources/conf/portal and 2 other directories.
by do-not-reply@jboss.org
Author: dkatayev
Date: 2009-11-24 04:04:33 -0500 (Tue, 24 Nov 2009)
New Revision: 819
Added:
core/trunk/exo.core.component.database/src/test/resources/conf/standalone/
Removed:
core/trunk/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml
core/trunk/exo.core.component.database/src/main/resources/conf/standalone/
Modified:
core/trunk/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml
Log:
EXOJCR-259 test configuration moved
Deleted: core/trunk/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml
===================================================================
--- core/trunk/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml 2009-11-24 08:57:13 UTC (rev 818)
+++ core/trunk/exo.core.component.database/src/main/resources/conf/portal/test-configuration.xml 2009-11-24 09:04:33 UTC (rev 819)
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-
- Copyright (C) 2009 eXo Platform SAS.
-
- This is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as
- published by the Free Software Foundation; either version 2.1 of
- the License, or (at your option) any later version.
-
- This software is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this software; if not, write to the Free
- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-
--->
-<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd http://www.exoplaform.org/xml/ns/kernel_1_0.xsd"
- xmlns="http://www.exoplaform.org/xml/ns/kernel_1_0.xsd">
- <component>
- <key>org.exoplatform.services.database.HibernateService</key>
- <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
- <init-params>
- <properties-param>
- <name>hibernate.properties</name>
- <description>Default Hibernate Service</description>
- <property name="hibernate.show_sql" value="false" />
- <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
- <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/portal" />
- <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
- <property name="hibernate.connection.autocommit" value="true" />
- <property name="hibernate.connection.username" value="sa" />
- <property name="hibernate.connection.password" value="" />
- <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
- <property name="hibernate.c3p0.min_size" value="5" />
- <property name="hibernate.c3p0.max_size" value="20" />
- <property name="hibernate.c3p0.timeout" value="1800" />
- <property name="hibernate.c3p0.max_statements" value="50" />
- </properties-param>
- </init-params>
- </component>
- <component>
- <key>jcr.datasource</key>
- <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
- <init-params>
- <properties-param>
- <name>hibernate.properties</name>
- <description>JCR Workspace datasource</description>
- <property name="hibernate.show_sql" value="false" />
- <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
- <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/jcr" />
- <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
- <property name="hibernate.connection.autocommit" value="true" />
- <property name="hibernate.connection.username" value="sa" />
- <property name="hibernate.connection.password" value="" />
- <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
- <property name="hibernate.c3p0.min_size" value="5" />
- <property name="hibernate.c3p0.max_size" value="20" />
- <property name="hibernate.c3p0.timeout" value="1800" />
- <property name="hibernate.c3p0.max_statements" value="50" />
- </properties-param>
- </init-params>
- </component>
- <!-- for portal container -->
- <import>classpath:/conf/standalone/test-configuration.xml</import>
-</configuration>
\ No newline at end of file
Modified: core/trunk/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml
===================================================================
--- core/trunk/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml 2009-11-24 08:57:13 UTC (rev 818)
+++ core/trunk/exo.core.component.database/src/test/resources/conf/portal/test-configuration.xml 2009-11-24 09:04:33 UTC (rev 819)
@@ -79,4 +79,51 @@
</value-param>
</init-params>
</component>
+
+ <component>
+ <key>org.exoplatform.services.database.HibernateService</key>
+ <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
+ <init-params>
+ <properties-param>
+ <name>hibernate.properties</name>
+ <description>Default Hibernate Service</description>
+ <property name="hibernate.show_sql" value="false" />
+ <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
+ <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/portal" />
+ <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
+ <property name="hibernate.connection.autocommit" value="true" />
+ <property name="hibernate.connection.username" value="sa" />
+ <property name="hibernate.connection.password" value="" />
+ <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
+ <property name="hibernate.c3p0.min_size" value="5" />
+ <property name="hibernate.c3p0.max_size" value="20" />
+ <property name="hibernate.c3p0.timeout" value="1800" />
+ <property name="hibernate.c3p0.max_statements" value="50" />
+ </properties-param>
+ </init-params>
+ </component>
+ <component>
+ <key>jcr.datasource</key>
+ <type>org.exoplatform.services.database.impl.HibernateServiceImpl</type>
+ <init-params>
+ <properties-param>
+ <name>hibernate.properties</name>
+ <description>JCR Workspace datasource</description>
+ <property name="hibernate.show_sql" value="false" />
+ <property name="hibernate.cglib.use_reflection_optimizer" value="true" />
+ <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:target/temp/data/jcr" />
+ <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
+ <property name="hibernate.connection.autocommit" value="true" />
+ <property name="hibernate.connection.username" value="sa" />
+ <property name="hibernate.connection.password" value="" />
+ <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
+ <property name="hibernate.c3p0.min_size" value="5" />
+ <property name="hibernate.c3p0.max_size" value="20" />
+ <property name="hibernate.c3p0.timeout" value="1800" />
+ <property name="hibernate.c3p0.max_statements" value="50" />
+ </properties-param>
+ </init-params>
+ </component>
+ <!-- for portal container -->
+ <import>classpath:/conf/standalone/test-configuration.xml</import>
</configuration>
Copied: core/trunk/exo.core.component.database/src/test/resources/conf/standalone (from rev 817, core/trunk/exo.core.component.database/src/main/resources/conf/standalone)
16 years, 7 months