现在微服务已经是趋于稳定,各种功能能够使用微服务的就会架起微服务的口号. 显得很高大上,微服务的框架也有很多,我所接触到的就有spring-boot,dropwizard等. 在项目中都有使用过,由于在dropwizard遇到了太多的坑(如: 长时间不访问假死,字符编码长时间运行后就会几率性出现乱码.等总之就是长时间运行后就会出现各种各样让人抓狂的问题),虽然有dropwizard-metrics插件提供各种检测,但还是感觉太复杂了.就不再写文章描述这个框架的使用. 由于搞java开发的,都接触过spring框架,所以上手spring-boot会更加的快速.
下面介绍下spring-boot的入门环境搭建.
本文及以后文章都是采用 1.4.2 版本
因为截止到现在这个是稳定版,后续版本都还只是快照版本.- 新建maven项目
- 在pom.xml中增加如下配置
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.2.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
- 新建
hello/SampleController.java
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);
}
}
到此为止,一个简单的微服务已经搭建完成.可以run下试试效果.打开浏览器输入 http://localhost:8080