springboot
文章平均质量分 88
MInNrz
猪事顺利^(oo)^
展开
-
windows安装使用RocketMQ常见问题,及springboot整合
介绍rocketmq的安装和常见的报错踩坑原创 2023-08-21 19:09:48 · 913 阅读 · 0 评论 -
springboot整合thymeleaf以及静态资源访问的问题
1. 导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> 2. 配置yml 前缀后缀什么的配置其实不需要,自动配置好了,只要关缓存方便调试就行 sp原创 2020-06-11 13:09:47 · 1935 阅读 · 0 评论 -
sprinboot整合swagger
官方文档 https://swagger.io/tools/swagger-ui/ 简单介绍 Swagger UI allows anyone — be it your development team or your end consumers — to visualize and interact with the API’s resources without having any of the implementation logic in place. It’s automatically .原创 2020-06-08 15:54:02 · 142 阅读 · 0 评论 -
springboot导出excel表格(easyExcel)
官方文档 https://www.yuque.com/easyexcel/doc/quickstart 导入pom依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.1.6</version> </depen.原创 2020-06-07 16:44:14 · 236 阅读 · 0 评论 -
springboot快速整合mybatis
springboot整合mybatis 环境:jdk1.8,idea,MySQL 8.0.16 1. 新建一个springboot项目 2. 添加pom依赖 添加相关依赖,就可以连接数据库了 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId&原创 2020-06-07 15:50:41 · 133 阅读 · 0 评论
分享