Skip to content
Snippets Groups Projects
Commit 8b26602b authored by felmer's avatar felmer
Browse files

SP-245, BIS-150: Minimal application context for bootstraping.

SVN: 26422
parent ef0a2965
No related branches found
No related tags found
No related merge requests found
...@@ -11,8 +11,16 @@ ...@@ -11,8 +11,16 @@
http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/context/spring-context-2.5.xsd
"> ">
<import resource="genericCommonContext.xml"/> <!--
<import resource="genericApplicationContext.xml"/> // Replaces ${...} with corresponding values found in 'location' property. A value
// can be overridden by setting a corresponding system property.
-->
<bean id="propertyConfigurer"
class="ch.systemsx.cisd.common.spring.ExposablePropertyPlaceholderConfigurer">
<property name="location" value="classpath:service.properties" />
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
<property name="ignoreUnresolvablePlaceholders" value="true" />
</bean>
<bean name="bootstrap" class="ch.systemsx.cisd.common.spring.Bootstrapper"> <bean name="bootstrap" class="ch.systemsx.cisd.common.spring.Bootstrapper">
<property name="configLocation" value="classpath:applicationContext.xml" /> <property name="configLocation" value="classpath:applicationContext.xml" />
...@@ -23,8 +31,4 @@ ...@@ -23,8 +31,4 @@
</list> </list>
</property> </property>
</bean> </bean>
<plugins:component-scan base-package="ch.systemsx.cisd.openbis" annotation-config="false">
<plugins:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />
</plugins:component-scan>
</beans> </beans>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment