目录

springboot介绍

创建Spring Boot项目

方式一:使用的地址  https://start.spring.io 

方式二:使用国内的地址https://start.springboot.io

方式三:Maven工程改造 


springboot介绍

SpringBoot是Spring中的一个成员, 可以简化Spring,SpringMVC的使用。 他的核心还是IOC容器。

特点:

  • Create stand-alone Spring applications
    创建spring应用
  • Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files)
    内嵌的tomcat, jetty , Undertow
  • Provide opinionated 'starter' dependencies to simplify your build configuration
    提供了starter起步依赖,简化应用的配置。
    比如使用MyBatis框架 , 需要在Spring项目中,配置MyBatis的对象 SqlSessionFactory , Dao的代理对象
    在SpringBoot项目中,在pom.xml里面, 加入一个 mybatis-spring-boot-starter依赖
  • Automatically configure Spring and 3rd party libraries whenever possible
    尽可能去配置spring和第三方库。叫做自动配置(就是把spring中的,第三方库中的对象都创建好,放到容器中, 开发人员可以直接使用)
  • Provide production-ready features such as metrics, health checks, and externalized configuration
    提供了健康检查, 统计,外部化配置
  • Absolutely no code generation and no requirement for XML configuration
    不用生成代码, 不用使用xml,做配置

创建Spring Boot项目

方式一:使用的地址  https://start.spring.io 

创建一个module,使用默认的地址,这个地址是国外的,有时候连接不上,我现在在做这个例子的时候就是连接不上了,此时我们可以使用方式二,除了这个地址不一样外,其他地方操作都是一样的。

springboot tibco springboot tibcorv_springboot tibco

 

springboot tibco springboot tibcorv_spring_02

方式二:使用国内的地址https://start.springboot.io

springboot tibco springboot tibcorv_springboot tibco_03

 

 

springboot tibco springboot tibcorv_spring boot_04

 

springboot tibco springboot tibcorv_springboot tibco_05

 

方式二我们还可以这样做,就是直接输入 https://start.springboot.io/ 

我们在浏览器打开 然后选择版本以及自己需要的依赖最后点击generate就会下载一个zip包,然后将这个包解压在导入也可以

springboot tibco springboot tibcorv_spring_06

方式三:Maven工程改造 

相信电脑前的小伙伴刚才看我们创建的springboot的项目的时候应该已经发现了,其实我们的springboot项目就是Maven项目,我们可以在创建一个Maven项目然后升级改造即可。

springboot tibco springboot tibcorv_spring boot_07

 

springboot tibco springboot tibcorv_spring_08

通过与方式一生成的项目相比较你会发现此时resources下缺少了一些文件夹和配置文件,只需要手动加入即可。

springboot tibco springboot tibcorv_springboot tibco_09

 

springboot tibco springboot tibcorv_springboot tibco_10

 

 我们还需要将pom的父引入,怎么引入呢,参考方式一创建的项目的pom

springboot tibco springboot tibcorv_后端_11

这样我们的Maven就改造成了springboot