Merged V2.2 to HEAD

8371: Merged V2.1 to V2.2
      8307: Next round of fixes for session management.
      8309: Fixed AR-1891: Long MLText strings fail in Oracle
      8313: Fix for case where existing MLText entry is null
      8319: Follow-up fix for NPE where StringValue is null when persisting
      8331: Fix for AR-1696: Long text in an aspect property causes an exception


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8496 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2008-03-11 06:03:17 +00:00
parent 78c695fc0a
commit ceed05d26f
40 changed files with 1276 additions and 1445 deletions

View File

@@ -21,46 +21,79 @@
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*
* Author Jon Cox <jcox@alfresco.com>
* File RuntimeSystemPropertiesSetter.java
*----------------------------------------------------------------------------*/
package org.alfresco.util;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.core.Ordered;
/**
* Sets runtime JVM system properties for Spring Framework.
*
* This class is used by the Spring framework to inject system properties into
* the runtime environment (e.g.: alfresco.jmx.dir). The motivation for this
* is that certain values must be set within spring must be computed in advance
* for org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
* to work properly.
*
* Sets runtime JVM system properties for Spring Framework.
* <p>
* This class is used by the Spring framework to inject system properties into
* the runtime environment (e.g.: alfresco.jmx.dir). The motivation for this
* is that certain values must be set within spring must be computed in advance
* for org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
* to work properly.
*
* @author Jon Cox
* @see #setProperties(Map)
*/
public class RuntimeSystemPropertiesSetter
implements BeanFactoryPostProcessor, Ordered
public class RuntimeSystemPropertiesSetter implements BeanFactoryPostProcessor, Ordered
{
private static org.apache.commons.logging.Log log=
org.apache.commons.logging.LogFactory.getLog(
RuntimeSystemPropertiesSetter.class );
private static Log logger = LogFactory.getLog(RuntimeSystemPropertiesSetter.class );
// default: just before PropertyPlaceholderConfigurer
private int order = Integer.MAX_VALUE - 1;
/** default: just before PropertyPlaceholderConfigurer */
private int order = Integer.MAX_VALUE - 1;
/**
* @see #setProperties(Map)
*/
private Map<String, String> jvmProperties;
public void RuntimeSystemPropertiesSetter() { }
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
throws BeansException
public RuntimeSystemPropertiesSetter()
{
jvmProperties = new HashMap<String, String>(7);
}
/**
* Set the properties that will get pushed into the JVM system properties.
* This will be akin to running the JVM with the <b>-Dprop=value</b>. Existing system JVM properties
* <i>will not be overwritten</i>.
*
* @param jvmProperties properties to set if they are not already present in the VM
*/
public void setJvmProperties(Map<String, String> jvmProperties)
{
this.jvmProperties = jvmProperties;
}
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException
{
// Push any mapped properties into the JVM
for (Map.Entry<String, String> entry : jvmProperties.entrySet())
{
String key = entry.getKey();
String value = entry.getValue();
// Push into VM
String currentValue = System.getProperty(key);
if (currentValue == null)
{
System.setProperty(key, value);
if (logger.isDebugEnabled())
{
logger.debug("Setting system property: " + key + " = " + value);
}
}
}
ClassLoader loader = Thread.currentThread().getContextClassLoader();
String path=null;
try
@@ -81,9 +114,8 @@ public class RuntimeSystemPropertiesSetter
catch (java.net.URISyntaxException e ) { e.printStackTrace(); }
catch (Exception e )
{
if ( log.isWarnEnabled() )
log.warn(
"Could not find alfresco-jmxrmi.password on classpath");
if ( logger.isWarnEnabled() )
logger.warn("Could not find alfresco-jmxrmi.password on classpath");
}
if ( path == null ) { System.setProperty("alfresco.jmx.dir", ""); }