postgresql java驱动库选择
本人java11 openjdk的openjdk 11.0.8 2020-07-14 OpenJDK Runtime Environment AdoptOpenJDK (build 11.0.8+10) OpenJDK 64-Bit Server VM AdoptOpenJ…
mongoTemplate 带子查询的聚合操作写法
db.test.aggregate([ { "$match": { "dataId": { "$nin": db.test.distinct("dataId", { "createdTime": { $gte: 6 } }) } } }, { $project: { _id: 1…
springboot2.3.7连接mysql错误?
问题描述springboot 2.3.7 mysql-connector-java 8.0.22mysql 8.0.3openjdk 14.0.1 (尝试过 jdk 1.8)在使用 springboot 2.2.2 版本时,没有任何问题,…
多模块的SpringBoot项目如何启动?
今天小弟在进行一个多模块的springboot项目,因为之前都是直接生成一个模块的那种所以直接能用,现在我分成common,pojo,mapper,service,api(web contr…
Spring WebFlux+Netty 中怎么配置 HTTP/2?
环境 JDK11+SpringBoot2.4.1+Spring WebFlux+默认 Netty 服务器,看了一下官方文档说是不同服务器配置不一样:里面的链接有关于 Netty 的配置:但是不…
mybatis-plus 查询部分字段时,其他字段为null
QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.select("menu_id","parent_id", "menu_name").eq("is_menu", 1); queryWrapper.ord…
springcloud 开启https
求大佬们讲解一下微服务下开启https的思路,假设我有四个服务,注册中心,gateway网关,oauth认证服务,和业务代码的服务,那么我开启https是所有模块…
OpenFeign服务方返回null对象,调用方得到的却是一个具体对象,但是字段为null
问题描述OpenFeign服务方返回null对象,调用方得到的却是一个具体对象,但是字段为null问题出现的环境背景及自己尝试过哪些方法在做注册功能的时候通过A…
初学SpringBoot,使用post请求String parameter 'username' is not present
Application.javapackage com.resume; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringB…
springboot整合Swagger2,当静态资源配置类在子包下时访问swagger-ui.html出现404
如下图所示:此时WebMvcConfig类与springboot的启动类AppAplication处于同级包 com.imooc下启动springboot,访问localhost:8088/swagger-ui.html,如下图…