构建微服务:Spring Boot 入门篇

什么是Spring Boot

构建微服务:Spring Boot 入门篇_第1张图片
Spring Boot

Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。用我的话来理解,就是Spring Boot其实不是什么新的框架,它默认配置了很多框架的使用方式,就像maven整合了所有的jar包,Spring Boot整合了所有的框架(不知道这样比喻是否合适)。

使用Spring Boot有什么好处

其实就是简单、快速、方便!平时如果我们需要搭建一个spring web项目的时候需要怎么做呢?

  1. 配置web.xml,加载spring和spring mvc
  2. 配置数据库连接、配置spring事务
  3. 配置加载配置文件的读取,开启注解
  4. 配置日志文件

...

配置完成之后部署tomcat 调试

...

现在非常流行微服务,如果我这个项目仅仅只是需要发送一个邮件,如果我的项目仅仅是生产一个积分;我都需要这样折腾一遍!
但是如果使用spring boot呢?
很简单,我仅仅只需要非常少的几个配置就可以迅速方便的搭建起来一套web项目或者是构建一个微服务!

使用Maven构建项目

通过 SPRING INITIALIZR 工具生产基础项目

总体流程:

  1. 访问:http://start.spring.io/
  2. 选择构建工具Maven Project、Spring Boot版本1.3.2以及一些工程基本信息
  3. 点击Generate Project下载项目压缩包
  4. 解压项目包,并用IDE以Maven项目导入,以IntelliJ IDEA 14为例:
  5. 菜单中选择File–>New–>Project from Existing Sources...
  6. 选择解压后的项目文件夹,点击OK
  7. 点击Import project from external model并选择Maven,点击Next到底为止。
  8. 若你的环境有多个版本的JDK,注意到选择Java SDK的时候请选择Java 7以上的版本

导入Spring-boot 相关依赖


    
    
        org.springframework.boot
        spring-boot-starter
    

    
    
        org.springframework.boot
        spring-boot-starter-test
        test
    

    
    
        org.springframework.boot
        spring-boot-starter-web
    


    
    
        org.springframework.boot
        spring-boot-devtools
        true
    


启动项目

编写controller内容

package com.pingkeke.springBoot.controller;


import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * HelloWorldController.
 */

@RestController
public class HelloWorldController {

    @RequestMapping("/hello")
    public String index() {
        return "Hello World";
    }
}


/**
 * spring-web-4.3.10.RELEASE.jar
 spring-webmvc-4.3.10.RELEASE.jar
 tomcat-embed-core-8.5.16.jar

 http://localhost:8080/hello
 Hello World
 *
 */

运行DemoApplication中的main方法,启动服务:

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.5.6.RELEASE)

服务启动后,启动主程序,打开浏览器访问http://localhost:8080/hello,就可以看到效果了,有木有很简单!

如何做单元测试

打开的src/test/下的测试入口,编写简单的http请求来测试;使用mockmvc进行,利用MockMvcResultHandlers.print()打印出执行结果。

package com.pingkeke.springBoot.controller;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultHandlers;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;

/**
 * 编写简单的http请求来测试;使用mockmvc进行,
 * 利用MockMvcResultHandlers.print()打印出执行结果。.
 */

@RunWith(SpringRunner.class)
@SpringBootTest
public class HelloWorldControlerTests {

    private MockMvc mvc;

    @Before
    public void setUp() throws Exception {
        mvc = MockMvcBuilders.standaloneSetup(new HelloWorldController()).build();
    }

    @Test
    public void getHello() throws Exception {
        mvc.perform(MockMvcRequestBuilders.get("/hello").accept(MediaType.APPLICATION_JSON))
                .andExpect(MockMvcResultMatchers.status().isOk())
                .andDo(MockMvcResultHandlers.print())
                .andReturn();
    }
}

Spring Boot之热部署

spring boot使用的是spring-boot-devtools是一个为开发者服务的一个模块。其原理用了classLoader 其中一个加载不变的类,另一个restart ClassLoader加载变得类。
devtools会监听classpath下的文件变动,并且会立即重启应用(发生在保存时机)。

pom的依赖直接添加坐标



    org.springframework.boot
    spring-boot-devtools
    true
    true

编译节点添加


    
        
            org.springframework.boot
            spring-boot-maven-plugin
            
                
                true
            
        
    

设置Idea

构建微服务:Spring Boot 入门篇_第2张图片
设置Idea01

Ctrl+Shift+Alt+ /

构建微服务:Spring Boot 入门篇_第3张图片
设置Idea02
构建微服务:Spring Boot 入门篇_第4张图片
设置Idea03

重启项目即可。

你可能感兴趣的:(构建微服务:Spring Boot 入门篇)