05 2020 档案

摘要:ref: https://ding-doc.dingtalk.com/ 公司各类系统待处理事项散落各地,一会儿去人事系统处理入职申请,一会儿财务系统处理报销等。企业员工及管理者在处理待办事项时,只能切换不同系统分别处理,导致企业员工办公效率低下,非常容易遗漏。 企业使用的web系统(公司ERP系统、 阅读全文
posted @ 2020-05-23 15:44 Caesar_the_great 阅读(1666) 评论(0) 推荐(0) 编辑
摘要:Eclipse插件下载 4.2到Eclipse4.14.0的所有版本的spring插件: https://blog.csdn.net/lbqlzch/article/details/105471068 安装插件: 一路next,直到finish, 提示会重启eclipse,点击yes重启即可 重启之 阅读全文
posted @ 2020-05-20 11:11 Caesar_the_great 阅读(237) 评论(0) 推荐(0) 编辑
摘要:ref: https://blog.csdn.net/ryuenkyo/article/details/83008641 ref: https://blog.csdn.net/clk_esunny/article/details/80336073 1 Activiti介绍 Activiti5是由Al 阅读全文
posted @ 2020-05-20 11:03 Caesar_the_great 阅读(2310) 评论(0) 推荐(1) 编辑
摘要:ref: https://blog.csdn.net/pyhkobe/article/details/99718127 way1: 修改整个项目的encding 为 utf-8 在文件idea64.exe.vmoptions & idea.exe.vmoptions中加上: 1 -Dfile.enc 阅读全文
posted @ 2020-05-12 15:34 Caesar_the_great 阅读(928) 评论(0) 推荐(0) 编辑
摘要:ref: https://blog.csdn.net/liqingtx/article/details/60330555 1 什么是redis? Redis(Remote Dictionary Server),即远程字典服务(key - value 不就是一个字典么?),它是一个开源的、使用C语言编 阅读全文
posted @ 2020-05-11 22:10 Caesar_the_great 阅读(479) 评论(0) 推荐(0) 编辑
摘要:最小化所有窗口: Win+D 再按一下就可以还原窗口 窗口最小化: alt+空格 + n 窗口最大化: alt+空格 + x 关闭程序: alt+F4 关闭程序: alt+ 空格 + c 阅读全文
posted @ 2020-05-11 21:14 Caesar_the_great 阅读(153) 评论(0) 推荐(0) 编辑
摘要:redisTemplate和jedis两种操作缓存:https://blog.csdn.net/weixin_41987908/article/details/90897421 切换redis数据库:https://www.cnblogs.com/oxspirt/p/6529791.html Red 阅读全文
posted @ 2020-05-11 15:11 Caesar_the_great 阅读(107) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/u014481096/article/details/54134904?fps=1&locationNum=3 阅读全文
posted @ 2020-05-11 14:48 Caesar_the_great 阅读(208) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zhaipengfei1231/article/details/80819454?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-6.none 阅读全文
posted @ 2020-05-11 14:41 Caesar_the_great 阅读(7023) 评论(0) 推荐(0) 编辑
摘要:谷歌默认使用GET方式发请求,而后台用的@PostMapping("/login"),所以就崩了啊,改成: 阅读全文
posted @ 2020-05-08 18:58 Caesar_the_great 阅读(1) 评论(0) 推荐(0) 编辑
摘要:ref: https://blog.csdn.net/u013630349/article/details/47683293?utm_source=blogxgwz2 ref: https://blog.csdn.net/JohinieLi/article/details/76660733 ref: 阅读全文
posted @ 2020-05-07 16:52 Caesar_the_great 阅读(336) 评论(0) 推荐(0) 编辑
摘要:1 添加相关依赖: implementation "mysql:mysql-connector-java:${mysqlConnectorJavaVersion}" compile "com.baomidou:mybatis-plus-boot-starter:${mybatisPlusStarte 阅读全文
posted @ 2020-05-07 14:58 Caesar_the_great 阅读(151) 评论(0) 推荐(0) 编辑
摘要:1 @Service (写在Service层接口的实现类上 XXXServiceImpl) Q: 为什么不直接写在接口上?因为一个接口可能有多个实现 1 @Service 2 public class LogServiceImpl extends ServiceImpl<LogMapper, Log 阅读全文
posted @ 2020-05-07 14:37 Caesar_the_great 阅读(543) 评论(0) 推荐(0) 编辑
摘要:mybatis-plus: ## mapper文件位置 mapper-locations: classpath*:/mapper/**/*.xml ## 别名包设置,在mapper.xml中可直接用类名 type-aliases-package: com.xx.xx.entity global-co 阅读全文
posted @ 2020-05-07 12:17 Caesar_the_great 阅读(4138) 评论(0) 推荐(0) 编辑
摘要:步骤:1 安装pyinstaller -> 2 把第三方库的包复制到xxx.py同目录下 -> 3 pyinstaller -F 待打包文件名 (打包单个py文件) -> 4 check dist目录下生成的xxx.exe 1 install pyinstaller pip install pyin 阅读全文
posted @ 2020-05-06 16:07 Caesar_the_great 阅读(284) 评论(0) 推荐(0) 编辑
摘要:http://pypi.douban.com/simple/http://mirrors.aliyun.com/pypi/simple/https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文
posted @ 2020-05-06 10:12 Caesar_the_great 阅读(110) 评论(0) 推荐(0) 编辑
摘要:1 @JsonIgnore作用:在实体类向前台返回数据时用来忽略不想传递给前台的属性或接口。Eg:User实体中会有字段password字段,当返回用户信息给前台的时候,当然是不希望将password值也一并返回。所以,这个时候可以在password属性上加上注解JsonIgnore或者,可以在Us 阅读全文
posted @ 2020-05-06 09:00 Caesar_the_great 阅读(148) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zhaoxichen_10/article/details/88713799?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-2&depth_1-utm_sourc 阅读全文
posted @ 2020-05-03 18:10 Caesar_the_great 阅读(192) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/ttlx/p/11611086.html https://www.jianshu.com/p/6895384d2b9e 阅读全文
posted @ 2020-05-03 12:38 Caesar_the_great 阅读(136) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Txx318026/article/details/100918375 阅读全文
posted @ 2020-05-03 12:14 Caesar_the_great 阅读(290) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zhaoyan001/p/10332754.html https://blog.csdn.net/qushaming/article/details/96867190 阅读全文
posted @ 2020-05-02 10:03 Caesar_the_great 阅读(132) 评论(0) 推荐(0) 编辑
摘要:我的version: 2019.3 1 勾选 此选项: 2 建包 结果: 阅读全文
posted @ 2020-05-02 08:35 Caesar_the_great 阅读(694) 评论(0) 推荐(0) 编辑
摘要:1 ctl + k: 超链接 PS: 持续更新中。。。 阅读全文
posted @ 2020-05-01 19:51 Caesar_the_great 阅读(124) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示