为什么无法打开这个文件?java.io.FileNotFoundException
package com.abbott.common.utils; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.PrintStream; public c…
使用java动态创建html页面,为什么无法读取这个文件?
package com.abbott.common.utils; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.PrintStream; public c…
elasticsearch 整合springboot 的时候出现了日期格式转换的问题 ,找了好多也没有解决,请大佬帮助
实体类字段@Field( type = FieldType.Date, format = DateFormat.custom,pattern = "yyyy-MM-dd HH:mm:ss" ) @JsonFormat (shape = JsonFormat.Shape.…
nginx 反向代理动态页面显示空白
springboot + fineReport 编译的 jar ,在 CentOS7 上后台运行,直接输入IP地址+端口号可以正常打开报表,然后使用 nginx 做了反向代理(可以使用域名…
关于EasyExcel文件导出的问题
需求:组合不同表信息,用EasyExcel或者Poi导出规定模板的数据原始Excel内容格式:与我之前导出的不同是,这个Excel的表头有些是竖向的,像前端填写的…
springboot redis 如何存放对象?
问题描述springboot 2.3.7 想存取java对象到redis中去,但是能存不能取,并且存进去的值看起来不太对。redis 5.0.4问题出现的环境背景及自己尝试过哪…
mybatis-plus的@TableName注解的schema值读取配置文件的问题
请教各位:我想mybatis-plus的@TableName注解的schema值是从application.yml读取的,即:@TableName(value="XXXXX",schema="${xxx.schema}")但运行时…
为什么Mybatis plus在Entity与数据库字段一致的情况下报Unknown column?
如题,Entity/mapper/service/controller都是通过mybatis-generator生成的。依据最后的实际sql驼峰命名的转换也没问题,在mysql单独执行mapper生成的s…
jackson指定接口使用不同的序列化策略?
问题描述我的项目里有两种情况,我接手前的代码使用的是全局配置defaultPropertyInclusion = not null方式,当json字段对应的值为空时过滤,这样返回…
Springboot2.4.2版本整合mongdb,但是MongoTemplate无法注入spring容器
springboot版本号:2.4.2mongdb连接信息在yml中也配置如下:但是在controller中写接口,依赖注入MongoTemplate,编译一直报错:Could not autowire. N…
springboot关于@RabbitListener以及@QueueBinding的路由键设置没效果?
我使用rabbitmq和springboot集成出现一个坑。那就是我发送消息时使用的是同一个消息队列以及同一个直连交换器,通过不同的key发给不同的消息监听器。…
mysql 存储一个json字段,但是这个json对象非常复杂。我不知道如何处理
mysql 存储一个json字段,drop table if exists `xxhtml`; CREATE TABLE if not exists `gg`.`xxhtml` ( id BIGINT UNSIGNED auto_increment not null…
CommandLineRunner在初始化与@Bean顺序冲突导致逸出问题
问题描述一个类继承CommandLineRunner接口,进行项目启动时做的初始化,而这个初始化中有一个操作是把MySQL里面的配置参数put到cacheMap中,而项目另…