上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: idea 控制台乱码 阅读全文
posted @ 2021-11-12 09:42 译林 阅读(391) 评论(0) 推荐(0)
摘要: spring.xml中应用其他xml文件时提示: 引用:<import resource="spring-datasource.xml" /> 提示:cannot resolve file spring-datasource.xml 解决办法: ctrl+shift+alt+s打开如下界面: 设置r 阅读全文
posted @ 2021-11-11 10:56 译林 阅读(1451) 评论(0) 推荐(0)
摘要: idea 创建模板信息 阅读全文
posted @ 2021-11-10 17:30 译林 阅读(179) 评论(0) 推荐(0)
摘要: -- 组装删除数据库表,根据数据库查找表 SELECT CONCAT('drop table ',table_name,';') FROM information_schema.`TABLES` WHERE table_schema='数据库名'; 阅读全文
posted @ 2021-10-14 14:20 译林 阅读(155) 评论(0) 推荐(0)
摘要: 在学习activiti流程引擎时,将activiti与springboot整合,可以自动部署流程流程,但是我的一直报错说:Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'actspring.act_ge 阅读全文
posted @ 2021-10-14 09:10 译林 阅读(1331) 评论(0) 推荐(0)
摘要: 1、idea安装translate插件 在程序中选中程序,点击右键选择translate 提示: 翻译失败:未知错误 疑似是国内访问google限制导致的问题,想着换个翻译的工具,有道翻译是首选,看到需要填写应用程序id和应用程序秘钥,就想着用百度翻译,百度其他工具使用的多,比如百度网盘等 最终选择 阅读全文
posted @ 2021-09-27 13:58 译林 阅读(6218) 评论(0) 推荐(0)
摘要: 系统环境:win10 查找idea环境的快捷键: 我使用的是eclipse的快捷键,查找duplicate 发现快捷没有问题,使用Ctrl+Alt+向下箭头 发生了屏幕倒转的现象,疑似是和其他快捷键冲突了 操作之后可以正常使用Ctrl+Alt+向下箭头 可以复制了 阅读全文
posted @ 2021-09-27 10:21 译林 阅读(2233) 评论(0) 推荐(0)
摘要: 1、idea添加lombok插件 2、pom文件增加 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.20</version> </dependency> 阅读全文
posted @ 2021-09-25 14:05 译林 阅读(379) 评论(0) 推荐(0)
摘要: /** * @author :abel.he * @date :Created in ${DATE} ${TIME} * @description:${description} * @modified By: */ 效果: 阅读全文
posted @ 2021-09-25 13:52 译林 阅读(80) 评论(0) 推荐(0)
摘要: // 新增用户 create user 'test'@'%' identified by '123456'; #test:用户名,%:所有ip地址,123456:密码 #授权给用户test,数据库test_db相关的所有权限,并且该用户test在所有网络IP上都有权限,%是指没有网络限制 grant 阅读全文
posted @ 2021-09-23 15:23 译林 阅读(80) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页