mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.2 to HEAD
15158: ETHREEOH-2478: Fix mechanism that allows extension classpath override of subsystem instance properties and Spring config - Reported broken on the forums - Now improved unit test coverage git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@15160 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -355,4 +355,13 @@ imap.config.server.mountPoints.value.AlfrescoIMAP.modeName=MIXED
|
|||||||
|
|
||||||
# Activity feed max size and max age (eg. 44640 mins = 31 days)
|
# Activity feed max size and max age (eg. 44640 mins = 31 days)
|
||||||
activities.feed.max.size=100
|
activities.feed.max.size=100
|
||||||
activities.feed.max.age.mins=44640
|
activities.feed.max.age.mins=44640
|
||||||
|
|
||||||
|
# Subsystem unit test values. Will not have any effect on production servers
|
||||||
|
subsystems.test.beanProp.default.longProperty=123456789123456789
|
||||||
|
subsystems.test.beanProp.default.anotherStringProperty=Global Default
|
||||||
|
subsystems.test.beanProp=inst1,inst2,inst3
|
||||||
|
subsystems.test.beanProp.value.inst2.boolProperty=true
|
||||||
|
subsystems.test.beanProp.value.inst3.anotherStringProperty=Global Instance Default
|
||||||
|
subsystems.test.simpleProp2=true
|
||||||
|
subsystems.test.simpleProp3=Global Default3
|
@@ -83,14 +83,15 @@ import org.springframework.core.io.support.ResourcePatternResolver;
|
|||||||
* <p>
|
* <p>
|
||||||
* Composite property settings are best controlled either through a JMX console (Enterprise edition only) or
|
* Composite property settings are best controlled either through a JMX console (Enterprise edition only) or
|
||||||
* /alfresco-global.properties in the classpath (the replacement to /alfresco/extension/custom-repository.properties).
|
* /alfresco-global.properties in the classpath (the replacement to /alfresco/extension/custom-repository.properties).
|
||||||
* For example, suppose "imap.server.mountPoints" was registered as a composite property of type {@link RepositoryPathConfigBean}.
|
* For example, suppose "imap.server.mountPoints" was registered as a composite property of type
|
||||||
* You can then use the property to configure a list of {@link RepositoryPathConfigBean}s. First you specify in the property's
|
* {@link RepositoryPathConfigBean}. You can then use the property to configure a list of
|
||||||
* value a list of zero or more 'instance names'. Each name must be unique within the property.
|
* {@link RepositoryPathConfigBean}s. First you specify in the property's value a list of zero or more 'instance names'.
|
||||||
|
* Each name must be unique within the property.
|
||||||
* <p>
|
* <p>
|
||||||
* <code>imap.server.mountPoints=Repository_virtual,Repository_archive</code>
|
* <code>imap.server.mountPoints=Repository_virtual,Repository_archive</code>
|
||||||
* <p>
|
* <p>
|
||||||
* Then, by magic you have two separate instances of {@link RepositoryPathConfigBean} whose properties you can address through an
|
* Then, by magic you have two separate instances of {@link RepositoryPathConfigBean} whose properties you can address
|
||||||
* extended set of properties prefixed by "imap.server.mountPoints".
|
* through an extended set of properties prefixed by "imap.server.mountPoints".
|
||||||
* <p>
|
* <p>
|
||||||
* To set a property on one of the instances, you append ".value.<instance name>.<bean property name>" to the
|
* To set a property on one of the instances, you append ".value.<instance name>.<bean property name>" to the
|
||||||
* parent property name. For example:
|
* parent property name. For example:
|
||||||
@@ -109,6 +110,7 @@ import org.springframework.core.io.support.ResourcePatternResolver;
|
|||||||
* <p>
|
* <p>
|
||||||
* In order to actually utilize this configurable list of beans in your child application context, you simply need to
|
* In order to actually utilize this configurable list of beans in your child application context, you simply need to
|
||||||
* declare a {@link ListFactoryBean} whose ID is the same name as the property. For example:
|
* declare a {@link ListFactoryBean} whose ID is the same name as the property. For example:
|
||||||
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* <bean id="imap.server.mountPoints" class="org.springframework.beans.factory.config.ListFactoryBean">
|
* <bean id="imap.server.mountPoints" class="org.springframework.beans.factory.config.ListFactoryBean">
|
||||||
* <property name="sourceList">
|
* <property name="sourceList">
|
||||||
@@ -251,9 +253,14 @@ public class ChildApplicationContextFactory extends AbstractPropertyBackedBean i
|
|||||||
@Override
|
@Override
|
||||||
public void afterPropertiesSet() throws Exception
|
public void afterPropertiesSet() throws Exception
|
||||||
{
|
{
|
||||||
|
List<String> idList = getId();
|
||||||
|
if (idList.isEmpty())
|
||||||
|
{
|
||||||
|
throw new IllegalStateException("Invalid ID");
|
||||||
|
}
|
||||||
if (getTypeName() == null)
|
if (getTypeName() == null)
|
||||||
{
|
{
|
||||||
setTypeName(getId().get(0));
|
setTypeName(idList.get(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load the property defaults
|
// Load the property defaults
|
||||||
@@ -268,12 +275,12 @@ public class ChildApplicationContextFactory extends AbstractPropertyBackedBean i
|
|||||||
super.afterPropertiesSet();
|
super.afterPropertiesSet();
|
||||||
|
|
||||||
// Apply any property overrides from the extension classpath and also allow system properties and JNDI to
|
// Apply any property overrides from the extension classpath and also allow system properties and JNDI to
|
||||||
// override
|
// override. We use the type name and last component of the ID in the path
|
||||||
JndiPropertiesFactoryBean overrideFactory = new JndiPropertiesFactoryBean();
|
JndiPropertiesFactoryBean overrideFactory = new JndiPropertiesFactoryBean();
|
||||||
overrideFactory.setSystemPropertiesMode(PropertyPlaceholderConfigurer.SYSTEM_PROPERTIES_MODE_OVERRIDE);
|
overrideFactory.setSystemPropertiesMode(PropertyPlaceholderConfigurer.SYSTEM_PROPERTIES_MODE_OVERRIDE);
|
||||||
overrideFactory.setLocations(getParent().getResources(
|
overrideFactory.setLocations(getParent().getResources(
|
||||||
ChildApplicationContextFactory.EXTENSION_CLASSPATH_PREFIX + getCategory() + '/' + getTypeName() + '/'
|
ChildApplicationContextFactory.EXTENSION_CLASSPATH_PREFIX + getCategory() + '/' + getTypeName() + '/'
|
||||||
+ getId() + '/' + ChildApplicationContextFactory.PROPERTIES_SUFFIX));
|
+ idList.get(idList.size() - 1) + '/' + ChildApplicationContextFactory.PROPERTIES_SUFFIX));
|
||||||
overrideFactory.setProperties(this.properties);
|
overrideFactory.setProperties(this.properties);
|
||||||
overrideFactory.afterPropertiesSet();
|
overrideFactory.afterPropertiesSet();
|
||||||
this.properties = (Properties) overrideFactory.getObject();
|
this.properties = (Properties) overrideFactory.getObject();
|
||||||
@@ -530,7 +537,7 @@ public class ChildApplicationContextFactory extends AbstractPropertyBackedBean i
|
|||||||
ChildApplicationContextFactory.CLASSPATH_PREFIX + getCategory() + '/' + getTypeName()
|
ChildApplicationContextFactory.CLASSPATH_PREFIX + getCategory() + '/' + getTypeName()
|
||||||
+ ChildApplicationContextFactory.CONTEXT_SUFFIX,
|
+ ChildApplicationContextFactory.CONTEXT_SUFFIX,
|
||||||
ChildApplicationContextFactory.EXTENSION_CLASSPATH_PREFIX + getCategory() + '/' + getTypeName() + '/'
|
ChildApplicationContextFactory.EXTENSION_CLASSPATH_PREFIX + getCategory() + '/' + getTypeName() + '/'
|
||||||
+ getId() + '/' + ChildApplicationContextFactory.CONTEXT_SUFFIX
|
+ getId().get(getId().size() - 1) + '/' + ChildApplicationContextFactory.CONTEXT_SUFFIX
|
||||||
}, false, ChildApplicationContextFactory.this.getParent());
|
}, false, ChildApplicationContextFactory.this.getParent());
|
||||||
|
|
||||||
// Add a property placeholder configurer, with the subsystem-scoped default properties
|
// Add a property placeholder configurer, with the subsystem-scoped default properties
|
||||||
|
@@ -0,0 +1,103 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2005-2009 Alfresco Software Limited.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* 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, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
* As a special exception to the terms and conditions of version 2.0 of
|
||||||
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
||||||
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
||||||
|
* FLOSS exception. You should have received a copy of the text describing
|
||||||
|
* the FLOSS exception, and it is also available here:
|
||||||
|
* http://www.alfresco.com/legal/licensing"
|
||||||
|
*/
|
||||||
|
package org.alfresco.repo.management.subsystems.test;
|
||||||
|
|
||||||
|
import org.alfresco.repo.management.subsystems.ApplicationContextFactory;
|
||||||
|
import org.alfresco.repo.management.subsystems.ChildApplicationContextFactory;
|
||||||
|
import org.alfresco.util.ApplicationContextHelper;
|
||||||
|
import org.alfresco.util.BaseSpringTest;
|
||||||
|
import org.springframework.context.ConfigurableApplicationContext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensures the following features of subsystems are working:
|
||||||
|
* <ul>
|
||||||
|
* <li>Subsystem default properties
|
||||||
|
* <li>Global property overrides (via alfresco-global.properties)
|
||||||
|
* <li>Subsystem instance specific property overrides (via extension classpath)
|
||||||
|
* <li>Subsystem instance specific Spring overrides (via extension classpath)
|
||||||
|
* <li>Composite property defaults
|
||||||
|
* <li>Composite property instance overrides
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* @see ChildApplicationContextFactory
|
||||||
|
* @author dward
|
||||||
|
*/
|
||||||
|
public class SubsystemsTest extends BaseSpringTest
|
||||||
|
{
|
||||||
|
|
||||||
|
/*
|
||||||
|
* (non-Javadoc)
|
||||||
|
* @see org.alfresco.util.BaseSpringTest#getConfigLocations()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
protected String[] getConfigLocations()
|
||||||
|
{
|
||||||
|
return new String[]
|
||||||
|
{
|
||||||
|
ApplicationContextHelper.CONFIG_LOCATIONS[0], "classpath:subsystem-test-context.xml"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test subsystems.
|
||||||
|
*
|
||||||
|
* @throws Exception
|
||||||
|
* the exception
|
||||||
|
*/
|
||||||
|
public void testSubsystems() throws Exception
|
||||||
|
{
|
||||||
|
ApplicationContextFactory subsystem = (ApplicationContextFactory) getApplicationContext().getBean(
|
||||||
|
"testsubsystem");
|
||||||
|
ConfigurableApplicationContext childContext = (ConfigurableApplicationContext) subsystem
|
||||||
|
.getApplicationContext();
|
||||||
|
assertTrue("Subsystem not started", childContext.isActive());
|
||||||
|
TestService testService = (TestService) childContext.getBean("testService");
|
||||||
|
// Make sure subsystem defaults work
|
||||||
|
assertEquals("Subsystem Default1", testService.getSimpleProp1());
|
||||||
|
// Make sure global property overrides work
|
||||||
|
assertEquals(true, testService.getSimpleProp2().booleanValue());
|
||||||
|
// Make sure extension classpath property overrides work
|
||||||
|
assertEquals("Instance Override3", testService.getSimpleProp3());
|
||||||
|
// Make sure extension classpath Spring overrides work
|
||||||
|
assertEquals("An extra bean I changed", childContext.getBean("anotherBean"));
|
||||||
|
// Make sure composite properties and their defaults work
|
||||||
|
TestBean[] testBeans = testService.getTestBeans();
|
||||||
|
assertNotNull("Composite property not set", testBeans);
|
||||||
|
assertEquals(3, testBeans.length);
|
||||||
|
assertEquals("inst1", testBeans[0].getId());
|
||||||
|
assertEquals(false, testBeans[0].isBoolProperty());
|
||||||
|
assertEquals(123456789123456789L, testBeans[0].getLongProperty());
|
||||||
|
assertEquals("Global Default", testBeans[0].getAnotherStringProperty());
|
||||||
|
assertEquals("inst2", testBeans[1].getId());
|
||||||
|
assertEquals(true, testBeans[1].isBoolProperty());
|
||||||
|
assertEquals(123456789123456789L, testBeans[1].getLongProperty());
|
||||||
|
assertEquals("Global Default", testBeans[1].getAnotherStringProperty());
|
||||||
|
assertEquals("inst3", testBeans[2].getId());
|
||||||
|
assertEquals(false, testBeans[2].isBoolProperty());
|
||||||
|
assertEquals(123456789123456789L, testBeans[2].getLongProperty());
|
||||||
|
assertEquals("Global Instance Default", testBeans[2].getAnotherStringProperty());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,85 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2005-2009 Alfresco Software Limited.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* 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, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
* As a special exception to the terms and conditions of version 2.0 of
|
||||||
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
||||||
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
||||||
|
* FLOSS exception. You should have received a copy of the text describing
|
||||||
|
* the FLOSS exception, and it is also available here:
|
||||||
|
* http://www.alfresco.com/legal/licensing"
|
||||||
|
*/
|
||||||
|
package org.alfresco.repo.management.subsystems.test;
|
||||||
|
|
||||||
|
import org.alfresco.repo.management.subsystems.ChildApplicationContextFactory;
|
||||||
|
import org.springframework.beans.factory.BeanNameAware;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A bean to test out 'composite property' features.
|
||||||
|
*
|
||||||
|
* @see ChildApplicationContextFactory
|
||||||
|
*/
|
||||||
|
public class TestBean implements BeanNameAware
|
||||||
|
{
|
||||||
|
private String id;
|
||||||
|
private long longProperty;
|
||||||
|
private boolean boolProperty;
|
||||||
|
private String anotherStringProperty;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* (non-Javadoc)
|
||||||
|
* @see org.springframework.beans.factory.BeanNameAware#setBeanName(java.lang.String)
|
||||||
|
*/
|
||||||
|
public void setBeanName(String name)
|
||||||
|
{
|
||||||
|
this.id = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getId()
|
||||||
|
{
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getLongProperty()
|
||||||
|
{
|
||||||
|
return this.longProperty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLongProperty(long longProperty)
|
||||||
|
{
|
||||||
|
this.longProperty = longProperty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isBoolProperty()
|
||||||
|
{
|
||||||
|
return this.boolProperty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBoolProperty(boolean boolProperty)
|
||||||
|
{
|
||||||
|
this.boolProperty = boolProperty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnotherStringProperty()
|
||||||
|
{
|
||||||
|
return this.anotherStringProperty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnotherStringProperty(String anotherStringProperty)
|
||||||
|
{
|
||||||
|
this.anotherStringProperty = anotherStringProperty;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2005-2009 Alfresco Software Limited.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* 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, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
* As a special exception to the terms and conditions of version 2.0 of
|
||||||
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
||||||
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
||||||
|
* FLOSS exception. You should have received a copy of the text describing
|
||||||
|
* the FLOSS exception, and it is also available here:
|
||||||
|
* http://www.alfresco.com/legal/licensing"
|
||||||
|
*/
|
||||||
|
package org.alfresco.repo.management.subsystems.test;
|
||||||
|
|
||||||
|
import org.alfresco.repo.management.subsystems.ChildApplicationContextFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class to test out subsystem property setting.
|
||||||
|
*
|
||||||
|
* @see ChildApplicationContextFactory
|
||||||
|
*/
|
||||||
|
public class TestService
|
||||||
|
{
|
||||||
|
private TestBean[] testBeans;
|
||||||
|
|
||||||
|
private String simpleProp1;
|
||||||
|
private Boolean simpleProp2;
|
||||||
|
private String simpleProp3;
|
||||||
|
|
||||||
|
public TestBean[] getTestBeans()
|
||||||
|
{
|
||||||
|
return this.testBeans;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTestBeans(TestBean[] testBeans)
|
||||||
|
{
|
||||||
|
this.testBeans = testBeans;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSimpleProp1()
|
||||||
|
{
|
||||||
|
return this.simpleProp1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSimpleProp1(String simpleProp1)
|
||||||
|
{
|
||||||
|
this.simpleProp1 = simpleProp1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getSimpleProp2()
|
||||||
|
{
|
||||||
|
return this.simpleProp2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSimpleProp2(Boolean simpleProp2)
|
||||||
|
{
|
||||||
|
this.simpleProp2 = simpleProp2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSimpleProp3()
|
||||||
|
{
|
||||||
|
return this.simpleProp3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSimpleProp3(String simpleProp3)
|
||||||
|
{
|
||||||
|
this.simpleProp3 = simpleProp3;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||||
|
<beans>
|
||||||
|
|
||||||
|
<!-- Demonstrate that it should be possible to extend / override subsystem Spring config -->
|
||||||
|
<bean id="anotherBean" class="java.lang.String">
|
||||||
|
<constructor-arg>
|
||||||
|
<value>An extra bean I changed</value>
|
||||||
|
</constructor-arg>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
</beans>
|
@@ -0,0 +1 @@
|
|||||||
|
subsystems.test.simpleProp3=Instance Override3
|
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||||
|
<beans>
|
||||||
|
|
||||||
|
<bean id="testService" class="org.alfresco.repo.management.subsystems.test.TestService">
|
||||||
|
<!-- This property should retain its subsystem-provided default -->
|
||||||
|
<property name="simpleProp1">
|
||||||
|
<value>${subsystems.test.simpleProp1}</value>
|
||||||
|
</property>
|
||||||
|
<!-- This property should be overriden by alfresco-global.properties (simulated with repository.properties) -->
|
||||||
|
<property name="simpleProp2">
|
||||||
|
<value>${subsystems.test.simpleProp2}</value>
|
||||||
|
</property>
|
||||||
|
<!-- This property should be overriden by an instance-specific file in the extension classpath -->
|
||||||
|
<property name="simpleProp3">
|
||||||
|
<value>${subsystems.test.simpleProp3}</value>
|
||||||
|
</property>
|
||||||
|
<property name="testBeans">
|
||||||
|
<ref bean="subsystems.test.beanProp"/>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
<!--A configurable list of TestBeans -->
|
||||||
|
<bean id="subsystems.test.beanProp" class="org.springframework.beans.factory.config.ListFactoryBean" >
|
||||||
|
<!-- Uses TestBean with:
|
||||||
|
id (String)
|
||||||
|
longProperty (long)
|
||||||
|
boolProperty (Boolean)
|
||||||
|
anotherStringProperty (String)
|
||||||
|
-->
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
<bean id="anotherBean" class="java.lang.String">
|
||||||
|
<constructor-arg>
|
||||||
|
<value>An extra bean</value>
|
||||||
|
</constructor-arg>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
</beans>
|
@@ -0,0 +1,3 @@
|
|||||||
|
subsystems.test.simpleProp1=Subsystem Default1
|
||||||
|
subsystems.test.simpleProp2=false
|
||||||
|
subsystems.test.simpleProp3=Subsystem Default3
|
21
source/test-resources/subsystem-test-context.xml
Normal file
21
source/test-resources/subsystem-test-context.xml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||||
|
<beans>
|
||||||
|
|
||||||
|
<bean id="testsubsystem" class="org.alfresco.repo.management.subsystems.ChildApplicationContextFactory" parent="abstractPropertyBackedBean">
|
||||||
|
<property name="autoStart">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="typeName">
|
||||||
|
<value>testType</value>
|
||||||
|
</property>
|
||||||
|
<property name="compositePropertyTypes">
|
||||||
|
<map>
|
||||||
|
<entry key="subsystems.test.beanProp">
|
||||||
|
<value>org.alfresco.repo.management.subsystems.test.TestBean</value>
|
||||||
|
</entry>
|
||||||
|
</map>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
</beans>
|
Reference in New Issue
Block a user