随笔分类 -  SpringBoot

SpringBoot基本用法,工具,架构,思想等
摘要:问题来源 在SpinrgBoot打包时,会生成一个可执行的jar文件,其中目录结构如下所示 test.jar ├─BOOT-INF │ ├─classes │ │ ├─com │ │ ├─static │ │ └─application.yml │ ├─lib | └─classpath.idx ├ 阅读全文
posted @ 2022-09-22 10:03 小小爬虫 阅读(1395) 评论(0) 推荐(0) 编辑
摘要:项目是基于SpringBoot开发 好处 使用的是注释(非注解),对代码无侵入 生成的文档是静态文档,减小服务压力 依赖 pom.xml中添加 <!--接口文档生成--> <dependency> <groupId>io.github.yedaxia</groupId> <artifactId>ja 阅读全文
posted @ 2021-12-22 16:47 小小爬虫 阅读(220) 评论(0) 推荐(0) 编辑
摘要:如何通过静态方法的方式获取spring bean package com.example.helper; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationCo 阅读全文
posted @ 2021-10-22 15:09 小小爬虫 阅读(69) 评论(0) 推荐(0) 编辑
摘要:# Mybatis Plus 自定义通用扩展 Mapper > 环境:IDEA,SpringBoot2.x,Mybatis Plus ## 前景需求 **我们在使用`Mybatis Plus`时,查询都需要使用到`QueryWrapper`。 复杂的`SQL`使用`QueryWrapper`就不多说 阅读全文
posted @ 2021-06-07 10:44 小小爬虫 阅读(5932) 评论(0) 推荐(0) 编辑
摘要:基于表的前后端代码生成工具 基于数据库表结构和注释的前后端代码生成工具。 后端生成基于SpringBoo2.x的MVC结构代码,前端生成基于vue-cli和elementUI的后台前端解决方案vue-admin-template 的页面组件代码,点击github地址了解更多关于vue-admin-t 阅读全文
posted @ 2021-02-25 11:18 小小爬虫 阅读(778) 评论(0) 推荐(0) 编辑
摘要:IDEA SpringBoot 模块化构建 为什么使用模块化构建?根本原因:解耦 创建父工程 新建父项目 idea 中选择 File / New / Project / Spring Initializr News Project 弹窗中 Type 选择 Maven POM 此时新建的 spring 阅读全文
posted @ 2021-02-03 11:19 小小爬虫 阅读(782) 评论(1) 推荐(0) 编辑