В чем разница между использованием @Profile и @ActiveProfiles в конфигурации Spring Test
@Configuration
@EnableRetry
@ActiveProfiles("unittest")
static class ContextConfiguration {
и
@Configuration
@EnableRetry
@Profile("unittest")
static class ContextConfiguration {