springboot
文章平均质量分 50
往事不堪回首..
这个作者很懒,什么都没留下…
展开
-
单个数据源与多数据源使用mybatisplus分页插件total一直为0的解决办法
单、多数据源使用mybatisplus分页插件total一直为0的解决办法原创 2024-04-19 10:15:35 · 1122 阅读 · 1 评论 -
多数据源时无法调用mybatisplus的CRUD方法(报错信息:Invalid bound statement(not found))+mybatisplus的Banner不打印的解决办法
多数据源时无法调用mybatisplus的CRUD方法(报错信息:Invalid bound statement(not found))的解决办法原创 2024-03-01 12:17:43 · 665 阅读 · 0 评论 -
@Results与@ResultMap的使用与注意事项
@Results与@ResultMap的使用与注意事项原创 2024-02-26 10:39:34 · 610 阅读 · 0 评论 -
解决多数据源项目启动报错:No qualifying bean of type ‘org.mybatis.spring.SqlSessionTemplate‘ available: expected
No qualifying bean of type 'org.mybatis.spring.SqlSessionTemplate' available: expected single matching bean but found 4: sqlSessionTemplate原创 2024-02-22 14:37:45 · 2029 阅读 · 0 评论 -
(ruoyi-vue3.8.6版本基础上)升级Spring Boot 3.x时遇到的问题与解决办法
在升级Spring Boot应用到3.x版本的过程中,可能会遇到一系列的依赖、配置及JDK版本相关问题。本文将列出几个常见问题及其对应的解决方案。原创 2024-02-17 16:08:08 · 1670 阅读 · 0 评论 -
Spring Boot 依赖管理:spring-boot-dependencies vs spring-boot-starter-parent
Spring Boot 依赖管理:spring-boot-dependencies vs spring-boot-starter-parent原创 2024-02-01 16:00:59 · 1422 阅读 · 0 评论 -
log4j:WARN Please initialize the log4j system properly的解决办法
log4j:WARN Please initialize the log4j system properly的解决办法原创 2024-01-23 15:10:55 · 1751 阅读 · 0 评论 -
使用freemarker模板作为页面进行跳转时405的解决办法之一
使用freemarker模板作为页面进行跳转时405的解决办法之一使用freemarker模板作为页面进行跳转时405的解决办法之一原创 2024-01-22 14:23:12 · 476 阅读 · 0 评论 -
Failed to configure a DataSource: ‘url‘ attribute is not specified xxx 的另一种解决方法
最终解决办法:发现.properties 文件中定义的默认分页参数我以为没用,所以删掉了,导致启动时java代码中应用该参数的地方一直报错,但是报错信息却是数据源的问题,实际上是properties参数的问题,因此一定要仔细检查。我找遍了全网也没能解决,我的数据源是正确配置的,以前都好好的,突然启动不了了,而且查看SVN记录该模块几个月之前才有修改过,但是可能那次没有更新到正式服务,因此我本地测试服务一直没启动过该模块。原创 2023-12-26 14:06:50 · 503 阅读 · 0 评论 -
SpringCloud日志太多了以及配置日志级别无效的解决办法
SpringCloud日志太多了以及配置日志级别无效的解决办法原创 2023-12-07 15:15:15 · 1451 阅读 · 0 评论 -
springboot项目使用Layui作为前端UI的一系列前后端交互的解决方法
背景: 因为比较喜欢Layui,因为多个项目都是从零开始就使用的layui开发的,并且开发过程中借鉴了很多其他项目(如Ruoyi、Pear Admin),因此最终选用大部分Pear Admin的项目中使用的一系列解决方案,并再次记录一些对开发非常有帮助的一些用例。2. 操作日志(获取接口返回值时,因为等保的原因公司规定需要把每一项操作的结果返回,因此这时就体现出了统一返回值的好处了)这样在操作日志切入类中根据返回值类型就能拿到实际的操作结果。原创 2023-12-07 11:14:25 · 796 阅读 · 0 评论 -
服务经常宕机的检查步骤以及排查问题、解决方法(持续更新)
服务经常宕机的检查步骤以及排查问题、解决方法(持续更新)原创 2023-04-02 16:39:56 · 1528 阅读 · 0 评论 -
springboot2.7.4+后台国际化+layui2.7.6快速开发模板
springboot2.7.4+后台国际化+layui2.7.6 + postgres快速开发模板原创 2023-02-02 14:33:29 · 778 阅读 · 0 评论 -
解决Thymeleaf中LocalDateTime格式转String报错
解决Thymeleaf中LocalDateTime格式转String报错:Method format(java.time.LocalDateTime,java.lang.String) cannot be found on type org.thymeleaf.expression.Dates原创 2022-12-29 12:18:24 · 1861 阅读 · 0 评论 -
springboot + 操作日志添加
使用AOP面向切入插入操作日志,使用mybatisplus自带分页查询操作日志原创 2022-06-09 12:56:15 · 1338 阅读 · 0 评论 -
springboot集成系统操作日志超详细
1.日志表 (我使用的时postgre,其他数据库需要修改脚本)-- public.sys_log definition-- Drop table-- DROP TABLE sys_log;CREATE TABLE sys_log ( id varchar(38) NOT NULL, username varchar(30) NOT NULL, "method" varchar(255) NULL, -- 方法名 params varchar(1000) NULL, -- 参数.原创 2022-01-11 15:27:15 · 5183 阅读 · 2 评论 -
springboot + freemarker简单搭建
1. 新建项目:2. src/main/resources目录下新建templates以及static文件夹,templates里面放页面文件(.ftlh后缀文件,2.0之前后缀是.ftl),static里面放js以及各种静态资源<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"/> <title></title><..原创 2021-10-18 13:55:18 · 337 阅读 · 0 评论 -
springboot2.0升级2.4.7问题汇总
springboot2.0升级到springboot2.4.7之后遇到的问题:1.无法打包[INFO] [1m------------------------------------------------------------------------[m[INFO] [1;31mBUILD FAILURE[m[INFO] [1m------------------------------------------------------------------------[m[INF原创 2021-05-26 12:31:23 · 785 阅读 · 1 评论 -
java直接调用http请求的几种方法
1.使用apache HttpClient发送Http请求首先需要添加依赖: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.0.RELEASE</version> <relativePath/&...原创 2021-04-29 09:22:15 · 1004 阅读 · 0 评论 -
不能直接使用@Autowired & @Service的场景
//@Service 不能托管给spring,一旦交给spring托管了那就只会生成一个实例,而setUserId这个方法同个实例如果被多个用户同时调用就会导致数据被覆盖的风险public class UploadService { public String userId = "system"; public void setUserId(String userId) { this.userId = userId; } public v...原创 2021-04-20 11:05:56 · 910 阅读 · 0 评论 -
springboot启动时报Ambiguous mapping. Cannot map ‘user‘ method
需要在下图中把name改成value,再次启动错误清除原创 2021-04-12 11:11:39 · 470 阅读 · 0 评论 -
springcloud alibaba-------------springboot集成nacos
springcloud alibaba集成nacos动态使用配置中心(只使用配置中心,未使用服务注册发现)转载参考:https://blog.csdn.net/qq_39914581/article/details/109822780?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_utm_term-0&spm=1001.2101.3001.4242demo下载 :https://download.csdn.net/downloa原创 2021-04-06 17:03:36 · 439 阅读 · 2 评论 -
Spring Boot【快速入门】
Spring Boot【快速入门】Spring Boot 概述Build Anything with Spring Boot:Spring Boot is the starting point for building all Spring-based applications. Spring Boot is designed to get you up and running as...转载 2018-08-03 16:10:41 · 142 阅读 · 0 评论