springboot定制banner
摘要:一、生成艺术字 springboot启动时会打印一个banner,就是spring的艺术字, . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ __
阅读全文
posted @
2022-09-02 09:41
周文豪
阅读(221)
推荐(0) 编辑
SpringBoot整合knife4j
摘要:一、knife4j简介 1、简介 knife4j是为Java MVC框架集成Swagger生成Api文档的增强解决方案,它封装了swagger。前身是swagger-bootstrap-ui,取名kni4j是希望它能像一把匕首一样小巧,轻量,并且功能强悍! gitee地址:https://gitee
阅读全文
posted @
2022-08-01 11:46
周文豪
阅读(621)
推荐(0) 编辑
SpringBoot集成Swagger
摘要:一、swagger简介 1、前后端分离开发 2、简介 Swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化 RESTful 风格的 Web 服务 官网:https://swagger.io/ 它的主要作用是: 使得前后端分离开发更加方便,有利于团队协作。(实际开发中,接口文档的内容会
阅读全文
posted @
2022-08-01 11:15
周文豪
阅读(1402)
推荐(0) 编辑
Springboot整合Reids(redis desk manager 中key乱码)
摘要:1、创建一个Springboot工程 2、添加依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.5.RELE
阅读全文
posted @
2022-03-28 19:06
周文豪
阅读(361)
推荐(0) 编辑
Springboot2.6.5整合RabbitMQ
摘要:一、搭建父工程和生产者子模块和消费者子模块 1、搭建父工程 添加依赖如下: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <versio
阅读全文
posted @
2022-03-26 18:12
周文豪
阅读(792)
推荐(0) 编辑
SpringBoot整合JDBCTemplate
摘要:一、spring JDBC Spring框架对JDBC的简单封装。提供了一个JDBCTemplate对象简化JDBC的开发。 步骤: 1、 添加依赖 2、创建JdbcTemplate对象。依赖于数据源DataSource * JdbcTemplate template = new JdbcTempl
阅读全文
posted @
2021-12-19 22:23
周文豪
阅读(2697)
推荐(0) 编辑
springboot整合shiro安全框架
摘要:一、创建一个springboot项目 创建完成后目录如下: 补齐目录结构 二、添加依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <
阅读全文
posted @
2021-12-01 18:07
周文豪
阅读(145)
推荐(0) 编辑
springboot整合mybatis-plus
摘要:一、mybatis-plus入门 官网:https://mp.baomidou.com MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 1、创建一个spring boot工程 参考:https://w
阅读全文
posted @
2021-11-29 20:36
周文豪
阅读(316)
推荐(0) 编辑
SpringBoot整合Junit进行单元测试
摘要:一、junit4 1、添加Junit的起步依赖 <!--测试的起步依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <sco
阅读全文
posted @
2021-08-31 10:57
周文豪
阅读(266)
推荐(0) 编辑