上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: <?xml version="1.0" encoding="UTF-8"?> <configuration scan="true"> <contextName>auth</contextName> <property name="LOG_APP_NAME" value="${LOG_APP_NAME 阅读全文
posted @ 2022-09-27 09:37 sowler 阅读(56) 评论(0) 推荐(0) 编辑
摘要: mysql查询时候报错: Lock wait timeout exceeded; try restarting transaction 译文:锁等待超时;试着重新启动事务 被锁了,需要解锁。 1.innodb_trx 当前运行的所有事务 select * from information_schem 阅读全文
posted @ 2022-09-26 18:22 sowler 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 1.静态加载Driver static { try { Class.forName("com.mysql.cj.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); } } 2.创建连接 private st 阅读全文
posted @ 2022-09-26 16:11 sowler 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1.错误信息 org.redisson.client.RedisException: MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands t 阅读全文
posted @ 2022-09-23 17:09 sowler 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 进入my.cnf文件//乱码修改 设置编码 character_set_server = utf8mb4 //编码 collation-server = utf8mb4_general_ci //连接数据库执行操作 init_connect='SET NAMES utf8mb4' 1.只有在普通用户 阅读全文
posted @ 2022-09-20 17:52 sowler 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1. nginx启动报错: Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -x 阅读全文
posted @ 2022-09-20 10:26 sowler 阅读(495) 评论(0) 推荐(0) 编辑
摘要: public static <K, V> Map<K, V> parseListToMap(Collection<V> list, Function<V, K> mapper) { if (list == null || list.size() == 0) { return null; } Map< 阅读全文
posted @ 2022-09-16 13:40 sowler 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1.自动装配组件@Autowired和@Resource @Autowired @Autowired 注解属于spring注解 默认为 @Autowired(required=true), required为true表示注入bean的时候,该bean必须存在,否则就会注入失败报错。 为false表示 阅读全文
posted @ 2022-09-15 18:10 sowler 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1.@Conditional注解 @Conditional 是Spring4新提供的注解。 它的作用是按照一定的条件进行判断,满足条件给容器注册bean,否则不注入。 可以作用在方法上,也可以作用在类上。 使用的时候需要传入实现Condition接口类数组。 如果是类和方法都加了@Condition 阅读全文
posted @ 2022-09-15 13:45 sowler 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1.如果改子类有父类,则把父类加入子类的父ID中 private static List<MentVo> breadthParentFirst(List<MentVo> rootTree) { if (CollectionUtils.isEmpty(rootTree)) { return Lists 阅读全文
posted @ 2022-09-13 10:26 sowler 阅读(88) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页