上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: idea 创建模板信息 阅读全文
posted @ 2021-11-10 17:30 译林 阅读(169) 评论(0) 推荐(0) 编辑
摘要: -- 组装删除数据库表,根据数据库查找表 SELECT CONCAT('drop table ',table_name,';') FROM information_schema.`TABLES` WHERE table_schema='数据库名'; 阅读全文
posted @ 2021-10-14 14:20 译林 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 在学习activiti流程引擎时,将activiti与springboot整合,可以自动部署流程流程,但是我的一直报错说:Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'actspring.act_ge 阅读全文
posted @ 2021-10-14 09:10 译林 阅读(1190) 评论(0) 推荐(0) 编辑
摘要: 1、idea安装translate插件 在程序中选中程序,点击右键选择translate 提示: 翻译失败:未知错误 疑似是国内访问google限制导致的问题,想着换个翻译的工具,有道翻译是首选,看到需要填写应用程序id和应用程序秘钥,就想着用百度翻译,百度其他工具使用的多,比如百度网盘等 最终选择 阅读全文
posted @ 2021-09-27 13:58 译林 阅读(5948) 评论(0) 推荐(0) 编辑
摘要: 系统环境:win10 查找idea环境的快捷键: 我使用的是eclipse的快捷键,查找duplicate 发现快捷没有问题,使用Ctrl+Alt+向下箭头 发生了屏幕倒转的现象,疑似是和其他快捷键冲突了 操作之后可以正常使用Ctrl+Alt+向下箭头 可以复制了 阅读全文
posted @ 2021-09-27 10:21 译林 阅读(1947) 评论(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 译林 阅读(353) 评论(0) 推荐(0) 编辑
摘要: /** * @author :abel.he * @date :Created in ${DATE} ${TIME} * @description:${description} * @modified By: */ 效果: 阅读全文
posted @ 2021-09-25 13:52 译林 阅读(72) 评论(0) 推荐(0) 编辑
摘要: // 新增用户 create user 'test'@'%' identified by '123456'; #test:用户名,%:所有ip地址,123456:密码 #授权给用户test,数据库test_db相关的所有权限,并且该用户test在所有网络IP上都有权限,%是指没有网络限制 grant 阅读全文
posted @ 2021-09-23 15:23 译林 阅读(69) 评论(0) 推荐(0) 编辑
摘要: application.properties配置文件 # 日志配置 # 环境变量配置 spring.profiles.active=dev # 日志路径配置 对应logback中的 ${LOG_PATH:-.} # ../ 设置的是相对路径 在服务器tomcat部署的时候logging.path=F 阅读全文
posted @ 2021-09-06 15:16 译林 阅读(4876) 评论(0) 推荐(0) 编辑
摘要: 1.git基础配置 配置查看 git config --lis 用户名和邮箱,如果已填写过则PASS git config --global user.name "username" git config --global user.email "mail@gmail.com" 2.生成SSH密钥( 阅读全文
posted @ 2021-09-06 14:50 译林 阅读(1393) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页