Spring Boot

From air
Revision as of 12:39, 18 May 2016 by Donsez (talk | contribs)
Jump to navigation Jump to search

http://projects.spring.io/spring-boot/

https://spring.io/guides/gs/rest-service/

package hello;

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;

@Controller
@EnableAutoConfiguration
public class SampleController {

    @RequestMapping("/")
    @ResponseBody
    String home() {
        return "Hello World!";
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(SampleController.class, args);
    }
}