错误提示:Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: The s ...
分类:
数据库 时间:
2020-02-12 10:40:00
阅读次数:
464
Atmel studio下载地址: https://www.microchip.com/mplab/avr-support/atmel-studio-7 我是win7的系统,在安装Atmel studio软件期间遇到了如下问题: 解决办法: 1.百度搜索KB2999226补丁下载,找一个符合要求的下 ...
ssh:远程执行命令,并获取返回结果import paramiko# 创建SSH对象ssh = paramiko.SSHClient()# 允许连接不在know_hosts文件中的主机ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())# ...
分类:
系统相关 时间:
2020-02-11 09:57:34
阅读次数:
70
Last login: Mon Feb 10 23:21:35 2020 from shwts17.spreadtrum.comjohn.ding@njand02:~$ cd android-studio/binjohn.ding@njand02:~/android-studio/bin$ ./st ...
分类:
其他好文 时间:
2020-02-11 00:35:09
阅读次数:
315
Navicat连接MySQL Server8.0版本时出现Client does not support authentication protocol requested by server;解决如下: 首先我们连接数据库 mysql -u 用户名 -p 接下来输入你的密码,登录成功后显示下面的信 ...
分类:
数据库 时间:
2020-02-10 18:16:15
阅读次数:
95
转换流--InpuStreamReader、OutputStreamWriter 类型:处理流 作用 用于将字节流转化成字符流,字符流与字节流之间的桥梁 InputStreamReader 从字节流到字符流的桥:它读取字节,并使用指定的charset将其解码为字符 。 它使用的字符集可以由名称指定, ...
分类:
编程语言 时间:
2020-02-10 13:34:29
阅读次数:
62
接下来开始搭建wordpress 一、下载WordPress安装包 下载地址:https://wordpress.org/download/ 其他地址: 中文论坛https://cn.wordpress.org/support/ 中文文档https://codex.wordpress.org/zh- ...
分类:
其他好文 时间:
2020-02-10 13:29:39
阅读次数:
47
一、安装准备 本次安装的版本是截止2020.1.30最新的版本0.17.0 软件要求 需要 Java 8(8u92 +) 以上的版本,否则会有问题 Linux,Mac OS X或其他类似Unix的操作系统(不支持Windows) 硬件要求 Druid包括一组参考配置和用于单机部署的启动脚本: 单服务 ...
分类:
其他好文 时间:
2020-02-10 10:04:58
阅读次数:
161
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and put. get(key) - Get the ...
分类:
系统相关 时间:
2020-02-10 09:57:46
阅读次数:
68
一、题目说明 题目是41. First Missing Positive,求一个未排序队列中缺失的最小正整数。时间复杂度要求是O(n)。难度是Hard,确实难。 二、我的解答 不考虑时间复杂度,首先对队列进行排序,然后从第一个正数开始,如果不是1就返回1,否则继续查找2....找不到就返回,找到就继 ...
分类:
其他好文 时间:
2020-02-10 09:30:59
阅读次数:
56