Repository: camel Updated Branches: refs/heads/camel-2.16.x f4027cd8e -> e94334ae7
CAMEL-9431: Fixed spring-boot to not handle lifecycle of beans that Camel is handling, this ensure a proper startup/shutdown sequence. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/e2b43c31 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e2b43c31 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e2b43c31 Branch: refs/heads/camel-2.16.x Commit: e2b43c3114aab644f8e1b3a7c6a6db1aaf265ccd Parents: f4027cd Author: Claus Ibsen <davscl...@apache.org> Authored: Wed Feb 10 08:55:43 2016 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Wed Feb 10 08:55:43 2016 +0100 ---------------------------------------------------------------------- .../org/apache/camel/spring/boot/CamelSpringBootShutdownTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/e2b43c31/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/CamelSpringBootShutdownTest.java ---------------------------------------------------------------------- diff --git a/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/CamelSpringBootShutdownTest.java b/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/CamelSpringBootShutdownTest.java index f2a8611..0dc663e 100644 --- a/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/CamelSpringBootShutdownTest.java +++ b/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/CamelSpringBootShutdownTest.java @@ -53,7 +53,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @DirtiesContext(classMode = ClassMode.AFTER_EACH_TEST_METHOD) // Let the CamelAutoConfiguration do all the configuration for us // including the TypeConverter registration into the ApplicationContext -@SpringApplicationConfiguration({CamelAutoConfiguration.class, CamelSpringBootShutdownTest.TestRouteConfiguration.class}) +@SpringApplicationConfiguration(classes = {CamelAutoConfiguration.class, CamelSpringBootShutdownTest.TestRouteConfiguration.class}) public class CamelSpringBootShutdownTest { @Autowired