您的位置:首页 > 编程语言 > Java开发

spring boot hello world

2016-07-25 09:56 579 查看
今天开始从零学习spring boot,顺便写个博客,记录过程。
工欲利其事,必先善其器。spring boot相关地址如下
http://projects.spring.io/spring-boot/ spring boot官网
https://github.com/spring-projects/spring-boot/tree/master/spring-boot-samples githup的demo地址
http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/ spring boot 文档
先从经典的helloword开始。
maven配置

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.6.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

Helloworld

@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);
}
}


这个就是最简单的helloworld版本demo了。只需要简单的几行代码就能提供一个web服务。
小伙伴们注意@EnableAutoConfiguration 这个注解,这个顾名思义提供自动配置,按照现在流行的说法就是约定大于配置。
最后说明下spring-boot-starter-web这个,springboot提供一大堆starter的依赖,用来简化于于其他第三方的集成。后面会经常看到这种starter依赖的。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: