第1章Spring Boot 框架入门+第2章Spring Boot 入门案例

 

SpringBoot系列博客来自于B站动力节点视频https://www.bilibili.com/video/BV1PZ4y1j7QK?p=1

0、SpringBoot专题的总目录

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第1张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第2张图片

 

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第3张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第4张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第5张图片

 

 

 

 

1、从零开始创建一个SpringBoot web项目

1.1. 创建一个空的项目:Empty Project

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第6张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第7张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第8张图片

1.2 在Empty Project空项目中添加一个SpringBoot web模块

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第9张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第10张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第11张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第12张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第13张图片

1.3 最终的SpringBoot web项目结构

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第14张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第15张图片

1.3.1 直接启动SpringBoot项目

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第16张图片

1.3.2 pom.xml 文件




    4.0.0

    
        org.springframework.boot
        spring-boot-starter-parent
        2.4.1
         
    

    com.wind
    002-springboot-springmvc
    0.0.1-SNAPSHOT

    
        1.8
    

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

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

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


2、

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第17张图片

设置Maven私服:使用国内阿里云Maven仓库。

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第18张图片

 

3、SpringBoot创建一个非web工程(不常用, 了解即可)

3.0 非web工程,直接创建一个Maven java工程就够用了

解释:

(1)java web工程,可以使用基于SpringBoot框架的javaweb工程,简化配置,很常用。

(2)java 工程(非web工程),直接使用Maven的java工程就足够用了,很常用。

3.1. 创建一个空的项目:Empty Project(步骤见1.1)

3.2 然后在该空项目中添加一个SpringBoot的java工程(非web工程)

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第19张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第20张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第21张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第22张图片

3.3 最终的SpringBoot的java工程项目结构如下

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第23张图片

3.4 (方式1)使用SpringBootJava工程创建接口并使用: ConfigurableApplicationContext容器

3.4 (方式2)使用SpringBootJava工程创建接口并使用: CommandLineRunner接口

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第24张图片

 

 

 

 

 

4、

 

 

99、使用MyBatis逆向工程自动生成实体类/mapper接口/mapper映射文件

99.1 项目结构: 使用MyBatis逆向工程自动生成实体类、mapper接口、mapper映射文件

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第25张图片

99.2 自动生成的StudentMapper.xml 文件解析(6个接口, 共4个类型)

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第26张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第27张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第28张图片

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第29张图片

99.3 springboot集成dubbo分布式框架,需要三个项目做支撑:

(1)接口工程(普通的Maven java工程即可)。

(2)服务提供者(springboot web项目)。

(3)(springboot web项目)。

99.4 如何关闭SpringBoot的Logo

第1章Spring Boot 框架入门+第2章Spring Boot 入门案例_第30张图片

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(SpringBoot专题,maven,spring,boot,spring,mybatis,创建SpringBoot项目)