springboot
文章平均质量分 83
MikuHoney
Java开发工程师
展开
-
SpringBoot+FreeMarker静态资源版本控制
1、项目环境/** springboot**/<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.8.RELEASE</version></parent>/** freemarker **/<dependenc原创 2020-12-25 10:23:36 · 314 阅读 · 0 评论 -
easypoi自定义模板导出+一对多表关系的导出+自动合并相同单元格+史上最全
1、项目环境<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.2.RELEASE</version> <relativePath /></parent>2、easypoi导包注意了,从这里开始坑就来了原创 2020-09-02 19:40:41 · 7020 阅读 · 7 评论 -
SpringBoot+MyBatis/MybatisPlus(SSM框架)采坑记录总结(持续更新)
1、mybatis的xml文件中写动态排序ORDER BY<choose> <when test="field != '0'.toString() and field != '' and field != null"> <!-- 这里不用#是因为#的方式会自动把参数加上双引号 导致无法排序 --> ${field} </when> <otherwise> `entrusttime` </otherwise><原创 2020-08-24 23:35:04 · 376 阅读 · 0 评论 -
MybatisPlus插入记录时报错统一的一步到位的解决办法(argument type mismatch)
argument type mismatch报错原因这里数据库对应的表如果设置了主键自增时,一定要在对应实体类中加上下面的注解,不然就会报错argument type mismatch,当然了,这只是其中可能的原因之一。 /** * id * 这里添加详细的注解是为了插入数据记录时保证主键正常自增 */ @TableId(value = "id",type = IdType.AUTO) private Integer id;...原创 2020-08-14 11:53:37 · 1162 阅读 · 0 评论 -
SpringBoot中映射项目文件的真实地址(操作系统磁盘路径)
1、windows操作系统package com.efong.config;import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigure原创 2020-08-11 13:03:17 · 771 阅读 · 0 评论