Spring Boot项目介绍(值得学习,超详细)

目录

         1 Spring Boot介绍

2 创建Spring Boot项目

2.1 第一种方式, 使用Spring提供的初始化器, 就是向导创建SpringBoot应用

 使用国内的地址

3 注解的使用

4 SpringBoot的配置文件

5 多环境配置

 @Value读取数据

6 @ConfigurationProperties

7  使用jsp

8 使用容器

9 ComnandLineRunner 接口 ,  ApplcationRunner接口


1 Spring Boot介绍

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中的,第三方库中的对象都创建好,放到容器中, 开发人员可以直接使用)

  • <

你可能感兴趣的:(Spring,Boot,mybatis,spring,spring,boot)