2014-02-28 18:50:45 +08:00
|
|
|
package sample.ws;
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Created by in329dei on 28-2-14.
|
|
|
|
|
*/
|
|
|
|
|
@Configuration
|
|
|
|
|
@EnableAutoConfiguration
|
|
|
|
|
@ComponentScan
|
|
|
|
|
public class SampleWsApplication {
|
|
|
|
|
|
2014-06-06 21:37:30 +08:00
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
|
|
SpringApplication.run(SampleWsApplication.class, args);
|
|
|
|
|
}
|
2014-02-28 18:50:45 +08:00
|
|
|
}
|