Springboot做为spring的延伸,从问世到现在也不过几年可是就受到了极大的关注,做为.net转战java的小白,再看过许多大神的博客后也来分享本身的学习笔记。java
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
@RestController public class HelloController { @RequestMapping("/hello") public String index() { return "Hello World!"; } }