BATCH-1863: The batch namespace can not be used with allowBeanDefinitionOverriding=false

This commit is contained in:
Chris Schaefer
2014-07-08 02:42:18 -04:00
committed by Michael Minella
parent 2fec70d25e
commit 47eba434d8
3 changed files with 71 additions and 4 deletions

View File

@@ -0,0 +1,41 @@
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.configuration.xml;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* <p>
* Test cases for BATCH-1863.
* </p>
*/
public class BeanDefinitionOverrideTests {
@Test
public void testAllowBeanOverride() {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext();
applicationContext.setConfigLocation("org/springframework/batch/core/configuration/xml/BeanDefinitionOverrideTests-context.xml");
applicationContext.refresh();
}
@Test
public void testAllowBeanOverrideFalse() {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext();
applicationContext.setAllowBeanDefinitionOverriding(false);
applicationContext.setConfigLocation("org/springframework/batch/core/configuration/xml/BeanDefinitionOverrideTests-context.xml");
applicationContext.refresh();
}
}