摘要: public class DBUtils { // static String user = "root"; // static String password = "root"; static String user = "root"; static String password = "root 阅读全文
posted @ 2021-11-02 09:47 二先森 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 原因: myql8开启了ONLY_FULL_GROUP_BY 1. select @global.sql_mode 有值说明开启了group by严谨模式 2. 关闭这个模式: 在my.cnf 配置文件中的 [mysqld] 下添加一行指令 [mysqld] sql_mode=STRICT_TRAN 阅读全文
posted @ 2021-11-02 09:08 二先森 阅读(1446) 评论(0) 推荐(1) 编辑
摘要: package com.example.demo.utils; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.core.exceptions.MybatisPlusExceptio 阅读全文
posted @ 2021-10-15 15:29 二先森 阅读(155) 评论(0) 推荐(0) 编辑
摘要: public class DbUtils{ private static final Logger logger = LoggerFactory.getLogger(DbUtils.class); /** * host */ public static final String host = "12 阅读全文
posted @ 2021-10-13 19:44 二先森 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 1 public String takePersonAccessRecord() { 2 String url = ""; 3 HttpHeaders headers = new HttpHeaders(); 4 headers.add("Authorization", TOKEN); 5 UriC 阅读全文
posted @ 2021-09-23 15:00 二先森 阅读(5576) 评论(0) 推荐(0) 编辑
摘要: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1 阅读全文
posted @ 2021-09-23 09:40 二先森 阅读(3202) 评论(0) 推荐(0) 编辑
摘要: -Dfile.encoding=GBK 阅读全文
posted @ 2021-09-22 11:33 二先森 阅读(71) 评论(0) 推荐(0) 编辑
摘要: public static String readJsonFile(String path){ String jsonStr = ""; try { File jsonFile = new File(path); FileReader fileReader = new FileReader(json 阅读全文
posted @ 2021-09-22 11:29 二先森 阅读(392) 评论(0) 推荐(0) 编辑
摘要: // 1. 获取所有数据List,找到顶级ID voList.stream().filter( vo -> vo.getParentId() == null ).map( (menu) -> { menu.setHiddenDictVos( getChildrens( menu, voList ) 阅读全文
posted @ 2021-09-01 10:28 二先森 阅读(261) 评论(0) 推荐(0) 编辑
摘要: public class WeatherUtil { private static final Logger LOGGER = LoggerFactory.getLogger(WeatherUtil.class); public static String doGet(String path){ S 阅读全文
posted @ 2021-05-18 00:08 二先森 阅读(209) 评论(0) 推荐(0) 编辑