post_img

04-SpringBoot配置文件

摘要

SpringBoot配置文件 SpringBoot配置文件格式一共有两种,一种是properties格式,一种是yaml格式,但文 …

post_img

03-SpringBoot常用工具

摘要

SpringBoot常用工具 SpringInitailizr 通过转到官方SpringBoot项目初始化器,并从依赖项选择Web …

post_img

02-SpringBoot中的概念

摘要

SpringBoot中的概念 依赖管理 SpringBoot项目自动引入依赖的原因是引用了一个父项目和starter场景启动器 场 …

post_img

02-URL映射

摘要

URL映射 package com; import org.springframework.stereotype.Controll …

post_img

01-SpringBoot简介

摘要

SpringBoot简介 SpringBoot是整合Spring技术栈的一站式框架,用于快速创建独立基于Spring的应用程序,简 …

post_img

08-常见需求

摘要

常见需求 逻辑删除 插入: 不作限制 查找: 追加where条件过滤掉已删除数据,且使用wrapper.entity生成的wher …

post_img

07-Service

摘要

Service 对于一些简单的业务,只需要使用MyBatis-plus提供的通用Service即可,再有其他复杂业务,再在该ser …

post_img

06-AR模式

摘要

AR模式 动态语言常用,Active Record(活动记录),简称AR,是一种领域模型模式,特点就是一个模型类对应关系型数据库中 …