Spring boot 零配置开发微服务

2019-01-01 23:18:27来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

20181229日星期六

体验Spring boot 零配置开发微服务

1.为什么要用Spring  boot

   1.1 简单方便、配置少、整合了大多数框架

   1.2 适用于微服务搭建,搭建的微服务与Spring clound进行完美融合,因为都是Spring家族

2. Spring boot开发过程

2.1 启动Idea

2.2 创建Maven项目

2.3 引入spring-boot-starter-web核心:Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container

2.4 引入spring-boot-starter-test核心:Starter for testing Spring Boot applications with libraries including JUnit, Hamcrest and Mockito

2.5 具体依赖如下:

2.6 <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <version>2.0.4.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <version>2.0.4.RELEASE</version>
    <scope>test</scope>
</dependency>

2.7 创建Spring boot启动主程序:package com.wuji.boot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
@ComponentScan(basePackages = {"com.wuji.controller"})
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class,args);
    }
}

2.8 编写HelloController:

package com.wuji.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/api")
public class HelloController {
    @RequestMapping("/hello")
    public String index(){
        return "Hello";
    }
}

2.9 运行http://localhost:8080/api/hello

2.10 第一次写Spring boot程序运行一般会出现:whitelabel error page 这个错误,是因为默认没有加载控制器包。要在主程序加上@ComponentScan(basePackages = {"com.wuji.controller"})注解

2.11 总结:整个程序只引用了两个核心包2.32.4,没有其它配置,就可以启动Restful服务。所以证实了Spring boot基本零配置来开发微服务。

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:解决org.hibernate.exception.SQLGrammarException:could not in

下一篇:SpringBoot(二十一)IntelliJ IDEA配置Quartz启动项