一. springboot2.x 的,oracle是11的,用flyway5.x的报错,后来用了4.x的 在dependencies加入了 oracle 和 flyway 的配置 <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc ...
分类:
数据库 时间:
2020-03-16 16:20:39
阅读次数:
182
问题: apt-get install 不能自动安装依赖,安装新的包时,提示Unmet dependencies问题。 $ sudo apt-get install subversion Reading package lists... Done Building dependency tree R ...
分类:
其他好文 时间:
2020-03-15 17:32:06
阅读次数:
615
idea从git上clone项目报错: 需要git-cmd.exe执行命令 1、clone没有用户密码: Clone failed:Authentication failed for “http......“ 执行命令 git config --system --unset credential.h ...
分类:
其他好文 时间:
2020-03-15 14:55:02
阅读次数:
88
报错信息: java.lang.IllegalStateException: Failed to load property source from location ‘classpath:/application.yml 解决方法: File -> Settings -> File Encodin ...
分类:
其他好文 时间:
2020-03-15 13:37:18
阅读次数:
100
背景 在服务器没有安装mycli,安装的python版本不一致的情况下,想到通过pyinstaller编译出mycli的二进制文件直接运行。 pyinstaller -F /usr/bin/python3.6/bin/mycli --onefile 编译成功,然后悲剧的情况来了 Traceback ...
分类:
其他好文 时间:
2020-03-15 13:05:33
阅读次数:
47
如果访问树莓派,或其他嵌入式硬件时,提示perl: warning: Setting locale failed,虽然 不影响使用,但是也很烦人。这里给出解决方法。 ...
分类:
系统相关 时间:
2020-03-14 23:49:37
阅读次数:
78
npm install 本身就有一个别名 npm i npm i module_name -S 即 npm install module_name --save 写入dependencies,发布到生产环境npm i module_name -D 即 npm install module_name ...
分类:
其他好文 时间:
2020-03-14 16:32:30
阅读次数:
86
这里使用了两种方式:第一种是使用jackson依赖,第二种使用fastjson依赖: 两个依赖如下 <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databi ...
分类:
编程语言 时间:
2020-03-14 11:09:55
阅读次数:
61
RHEL7 网卡启动失败Failed to start LSB: Bring up/down解决方法
分类:
其他好文 时间:
2020-03-14 10:53:23
阅读次数:
147
在上一个项目中遇到一些jar包冲突的问题,之后还有很多人分不清楚dependencies与dependencyManagement的区别,本篇文章将这些区别总结下来。 DepencyManagement应用场景 当我们的项目模块很多的时候,我们使用Maven管理项目非常方便,帮助我们管理构建、文档、 ...
分类:
其他好文 时间:
2020-03-13 18:28:35
阅读次数:
46