Building a RESTful Web Service :: Learn how to create a RESTful web service with Spring. :: spring-boot http://spring.io/guides/gs/rest-service/

ServiceMain.java 392B

123456789101112131415
  1. package hello;
  2. import org.springframework.bootstrap.SpringApplication;
  3. import org.springframework.bootstrap.context.annotation.EnableAutoConfiguration;
  4. import org.springframework.context.annotation.ComponentScan;
  5. @ComponentScan
  6. @EnableAutoConfiguration
  7. public class ServiceMain {
  8. public static void main(String[] args) {
  9. SpringApplication.run(ServiceMain.class, args);
  10. }
  11. }