Spring Boot2.0(2) 介绍以及第一个例子

  1. 什么是Spring Boot
  2. Spring Boot的优点
  3. Spring Boot的缺点
  4. 第一个例子
  5. 注解说明
  6. 参考文档

一  什么是Spring Boot

      Spring Boot makes it easy to create stand-alone, production-grade Spring-based Applications that you can run. We take an opinionated view of the Spring platform and third-party libraries, so that you can get started with minimum fuss. Most Spring Boot applications need very little Spring configuration.

                                                                                                          --<>

       根据官网给出的定义就是Spring Boot就是可以让我们可以轻松的创建一个可以运行的独立且可应用于生产级的spring的应用.它为其原有的Spring平台和第三方库提供了大量的默认配置.因此只需要少量的配置便可以进行开发.

      我个人认为其实Spring Boot就是对Spring的包和其他的第三方架包进行整合然后为他们提供大量默认配置.这样方便开发者(熟练之后挺方便的,刚开始感觉就是巨坑!).

二  Spring Boot的优点

        1)配置web.xml,加载spring和spring mvc

        2)配置数据库连接、配置spring事务

        3)配置加载配置文件的读取,开启注解

        4)配置日志文件

        5)  配置完成之后部署tomcat 调试

三  Spring Boot 的缺点

        由于它对各种第三方包进行整合封装,导致出现错误经常让人无从下手.为问题的定位增加了难度.(原本打算用Spring Boot 2.0的稳定版进行学习,发现无论如何就是无法成功启动.也不知道哪里出的问题).多次分装必然导致运行效率的下降!

四  第一个例子

        1. 用IDEA创建一个简单的Maven项目.

        2. 修改pom.xml文件

      



    4.0.0

    com.example
    SpringBoot2
    0.0.1-SNAPSHOT

    
    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.1.BUILD-SNAPSHOT
    

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

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

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

        
        
        
    

    
    
    
        
            spring-snapshots
            https://repo.spring.io/snapshot
            
                true
            
        
        
            spring-milestones
            https://repo.spring.io/milestone
        
    
    
        
            spring-snapshots
            https://repo.spring.io/snapshot
        
        
            spring-milestones
            https://repo.spring.io/milestone
        
    

    3. 在src/main/java中创建start类

package com.springboot2;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController// 页面跳转的控制
@Configuration// 
@EnableAutoConfiguration
@ComponentScan
public class Start {

    @RequestMapping("/") //web项目网站主页的
    public String home() {
        return "Hello World!";
    }
    //启动函数
    public static void main(String[] args) {
        SpringApplication.run(Example.class, args);
    }

}

   4  启动浏览器输入http://localhost:8080/,出现如下页面则表示启动成功.

     Spring Boot2.0(2) 介绍以及第一个例子_第1张图片

五  常见的注解说明

        @Configuration:表示将该类作用springboot配置文件类。
        @EnableAutoConfiguration : 表示程序启动时,自动加载springboot默认的配置。
        @ComponentScan : 表示程序启动是,自动扫描当前包及子包下所有类。
@RestController : Spring4之后新加入的注解,原来返回json需要@ResponseBody和@Controller配合。
      

六  参考文档

   https://docs.spring.io/spring-boot/docs/2.0.1.BUILD-SNAPSHOT/reference/htmlsingle/#using-boot-maven


你可能感兴趣的:(springBoot,java,原创,Spring-Boot2.0)