All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.test.context.ActiveProfiles Maven / Gradle / Ivy

There is a newer version: 6.1.13
Show newest version
/*
 * Copyright 2002-2022 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
 *
 *      https://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.test.context;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.springframework.core.annotation.AliasFor;

/**
 * {@code ActiveProfiles} is a class-level annotation that is used to declare
 * which active bean definition profiles should be used when loading
 * an {@link org.springframework.context.ApplicationContext ApplicationContext}
 * for test classes.
 *
 * 

This annotation may be used as a meta-annotation to create custom * composed annotations. * *

As of Spring Framework 5.3, this annotation will be inherited from an * enclosing test class by default. See * {@link NestedTestConfiguration @NestedTestConfiguration} for details. * * @author Sam Brannen * @since 3.1 * @see SmartContextLoader * @see MergedContextConfiguration * @see ContextConfiguration * @see ActiveProfilesResolver * @see org.springframework.context.ApplicationContext * @see org.springframework.context.annotation.Profile */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited public @interface ActiveProfiles { /** * Alias for {@link #profiles}. *

This attribute may not be used in conjunction with * {@link #profiles}, but it may be used instead of {@link #profiles}. */ @AliasFor("profiles") String[] value() default {}; /** * The bean definition profiles to activate. *

This attribute may not be used in conjunction with * {@link #value}, but it may be used instead of {@link #value}. */ @AliasFor("value") String[] profiles() default {}; /** * The type of {@link ActiveProfilesResolver} to use for resolving the active * bean definition profiles programmatically. * @since 4.0 * @see ActiveProfilesResolver */ Class resolver() default ActiveProfilesResolver.class; /** * Whether bean definition profiles from superclasses and enclosing * classes should be inherited. *

The default value is {@code true}, which means that a test class will * inherit bean definition profiles defined by a test superclass or * enclosing class. Specifically, the bean definition profiles for a test * class will be appended to the list of bean definition profiles defined by * a test superclass or enclosing class. Thus, subclasses and nested classes * have the option of extending the list of bean definition profiles. *

If {@code inheritProfiles} is set to {@code false}, the bean definition * profiles for the test class will shadow and effectively replace * any bean definition profiles defined by a superclass or enclosing class. *

In the following example, the {@code ApplicationContext} for * {@code BaseTest} will be loaded using only the "base" * bean definition profile; beans defined in the "extended" profile * will therefore not be loaded. In contrast, the {@code ApplicationContext} * for {@code ExtendedTest} will be loaded using the "base" * and "extended" bean definition profiles. *

	 * @ActiveProfiles("base")
	 * @ContextConfiguration
	 * public class BaseTest {
	 *     // ...
	 * }
	 *
	 * @ActiveProfiles("extended")
	 * @ContextConfiguration
	 * public class ExtendedTest extends BaseTest {
	 *     // ...
	 * }
	 * 
*

Note: {@code @ActiveProfiles} can be used when loading an * {@code ApplicationContext} from path-based resource locations or * annotated classes. * @see ContextConfiguration#locations * @see ContextConfiguration#classes * @see ContextConfiguration#inheritLocations */ boolean inheritProfiles() default true; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy