Update samples to use @SpringBootApplication

Update the relevant samples to use the new @SpringBootApplication
annotation.

Closes gh-1842
This commit is contained in:
Phillip Webb
2014-11-06 13:50:45 -08:00
parent 68571ee535
commit d039f43107
43 changed files with 94 additions and 265 deletions

View File

@@ -22,14 +22,10 @@ import javax.servlet.ServletContextListener;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableAutoConfiguration
@ComponentScan
@SpringBootApplication
public class SampleTomcatApplication {
private static Log logger = LogFactory.getLog(SampleTomcatApplication.class);