springboot+mybatisPlus
springboot
小矶鹬
逆水行舟,不进则退
展开
-
配置Swagger开发环境有效,生产环境无效
安全扫描问题解决原创 2023-09-15 15:50:07 · 1725 阅读 · 0 评论 -
Druid未授权访问--->ip:端口号/druid/index.html
安全扫描问题解决原创 2023-09-15 15:35:43 · 2074 阅读 · 0 评论 -
MyBatis-Plus 条件构造器常用方法使用(相等判断、范围判断、模糊匹配、非空判断、in判断、分组、排序、条件判断、逻辑判断、存在判断、查询字段)
MyBatis-Plus 条件构造器常用方法使用(相等判断、范围判断、模糊匹配、非空判断、in判断、分组、排序、条件判断、逻辑判断、存在判断、查询字段)_querywrapper判断非空_旭东怪的博客-CSDN博客转载 2023-08-22 09:44:43 · 242 阅读 · 0 评论 -
SpringSecurity学习
springSecurity原创 2022-08-11 17:41:04 · 123 阅读 · 0 评论 -
代码生成器---->3.5.1 以下版本
mybatisApi学习原创 2022-07-06 17:26:38 · 383 阅读 · 0 评论 -
@Autowired mapper报Could not autowire. No beans of ‘UsersMapper‘ type found.
对应mapper加注解@Repository即可解决原创 2022-03-22 18:04:36 · 254 阅读 · 0 评论 -
xml中jdbcType配置
CLOB:<result column="字段名" property="coverValue" jdbcType="CLOB" typeHandler="org.apache.ibatis.type.ClobTypeHandler"/>TIMESTAMP:<result column="字段名" property="cdTime" javaType="java.util.Date" jdbcType="TIMESTAMP"/>原创 2021-12-13 11:37:59 · 1873 阅读 · 0 评论 -
java.lang.ClassNotFoundException: Cannot find class: BaseResultMap
转自:java.lang.ClassNotFoundException: Cannot find class: BaseResultMap_皇朝灬焱轩-CSDN博客出现这种状况,别捉急,直接去相应的model对应的mapping中将resultType改成resultMap即可转载 2021-12-13 11:17:59 · 909 阅读 · 1 评论 -
springboot+mybatisPlus处理Clob
mapper.xml中:<result column="RESULTNAME" property="resultname" jdbcType="CLOB" typeHandler="org.apache.ibatis.type.ClobTypeHandler"/>实体中:@TableField("RESULTNAME")private String resultname;原创 2021-11-19 15:50:09 · 4028 阅读 · 1 评论 -
拼接sql字符串丢mapper.xml
eg:某个记录类型是多选值02;03 但是表记录可能存 02、03、02:03记录,只要记录类型满足02或者03都要全部查询出来String typeStrInfo="";String[] typeArr=typeStr.split(";");for(int i=0;i<typeArr.length;i++){ String subType=typeArr[i]; if(StringUtils.hasLength(subType)){ if(i==0){ ...原创 2021-05-18 17:46:15 · 884 阅读 · 0 评论 -
后端处理前端传递过来的base64文件,上传到ftp
改公司一个app,他们用canvas做手动签名,上传过程中后端用MultipartFile接收,接收到的文件没后缀名。后面百度知道base64头部有文件类型,需要在后端处理。大概思路就是base64转MultipartFile然后在调用以前文件上传的方法。======================================前端 let path = res.tempFilePath; uni.showLoading({title: '上传中...',mask: tr...原创 2020-11-16 15:59:59 · 2712 阅读 · 1 评论 -
Spring Boot使用@Scheduled定时器任务
摘要: Spring Boot之使用@Scheduled定时器任务 假设我们已经搭建好了一个基于Spring Boot项目,首先我们要在Application中设置启用定时任务功能@EnableScheduling。启动定时任务package com.scheduling;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBo...转载 2020-09-04 15:27:40 · 111 阅读 · 0 评论