摘要: 阅读全文
posted @ 2022-06-09 18:49 淡怀 阅读(322) 评论(0) 推荐(0) 编辑
摘要: private String getIpAddress(HttpServletRequest request) { String ip = request.getHeader("x-forwarded-for"); if (ip == null || ip.length() == 0 || "unk 阅读全文
posted @ 2022-06-09 15:55 淡怀 阅读(2779) 评论(0) 推荐(0) 编辑
摘要: 一、问题 二、解决 在application.yml文件中添加 mybatis-plus: configuration: # mybatis-plus默认开启了下滑线转换驼峰 需要关闭(设置为false) map-underscore-to-camel-case: false 或者在applicat 阅读全文
posted @ 2022-06-09 14:12 淡怀 阅读(1280) 评论(0) 推荐(0) 编辑