03 2024 档案
摘要:问题:win10 远程时 Ctrl + Alt + 方向键失灵 解决办法: 按住左侧的 Ctrl + Alt不放,再按一下 右侧的 Ctrl后松开, 再按方向键,快捷键生效了。 每次都需要按上次顺序来进行。
阅读全文
摘要:1、jdbc url加上参数 &rewriteBatchedStatements=true 2、yaml/properties加上配置 spring.jpa.properties.hibernate.jdbc.batch_size: 2000 spring.jpa.properties.hibern
阅读全文
摘要:1、template的slot写法变化 vue2: <template slot-scope="{row, index}" slot="action"> vue3: <template #action="{row, index}"> 2、路由页面缓存的写法变化 vue2: <keep-alive :
阅读全文
摘要:mvn clean versions:set -DnewVersion=8.24.1-SNAPSHOT versions:update-child-modules -Dmaven.test.skip=true mvn versions:commit
阅读全文
摘要:@Data public static class User { private String userId; private Integer age; } @Test void reflect() throws Throwable { User user = new User(); user.se
阅读全文