Fix stomp-chat according to the latest Boot

https://build.spring.io/browse/INTSAMPLES-NIGHTLY-JOB1-1189
This commit is contained in:
Artem Bilan
2014-11-10 13:57:44 +02:00
parent d3ccc2530c
commit 5547f2a840

View File

@@ -18,6 +18,7 @@ package org.springframework.integration.samples.chat.stomp.server;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
@@ -27,7 +28,7 @@ import org.springframework.context.annotation.ImportResource;
* @since 3.0
*/
@Configuration
@EnableAutoConfiguration
@EnableAutoConfiguration(exclude = GroovyTemplateAutoConfiguration.class)
@ImportResource("classpath:org/springframework/integration/samples/chat/stomp/server/stomp-server.xml")
public class Application {