1. 首先检查虚拟机有没有安装并启动ssh服务, ssh localhost 出现以下提示则为未安装: ssh: connect to host localhost port 22: Connection refused (ssh:连接到主机本地主机端口22:连接被拒绝) 2. root权限安装op ...
分类:
系统相关 时间:
2020-01-14 11:33:34
阅读次数:
134
Fri Mar 30 14:55:35 CST 2018 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, ...
分类:
数据库 时间:
2020-01-14 09:58:13
阅读次数:
94
package com.fgy.jdbc; import java.sql.*; /** * 转账小案例 */ public class tx { public static void main(String[] args) { Connection conn = null; PreparedSta ...
分类:
数据库 时间:
2020-01-14 09:39:16
阅读次数:
69
git 常用命令获得版本库 git init git clone 版本管理 git add 将已修改的文件纳入到暂存区 git commit 将暂存区提交到版本库 git rm 删除版本库中的特定文件 git rm --cached 从缓存区删除,文件回到工作区修改的状态 git reset HEA ...
分类:
其他好文 时间:
2020-01-13 23:31:40
阅读次数:
110
了解更多开发技巧,请访问,架构师小跟班官网:https://www.jiagou1216.compackage com.jiagou;import ch.ethz.ssh2.Connection;import ch.ethz.ssh2.Session;import ch.ethz.ssh2.Stre ...
分类:
编程语言 时间:
2020-01-13 19:45:49
阅读次数:
96
点击按钮播放动画。 value在0到300变化。 指定controller的执行时间为2秒。 添加监听 reset让动画回到初始的位置。 为动画添加监听器 控制了logo的从小放大 首先是集成AnimatedWidget build会根据动画的值而进行重新渲染 什么是AnimatedBuilder ...
分类:
数据库 时间:
2020-01-13 19:45:07
阅读次数:
160
今天用JDBCTemplate时,发现启动服务器之后报错: Could not get JDBC Connection; nested exception is java.sql.SQLException: Unknown system variable 'tx_isolation'。 网上说是因为 ...
分类:
数据库 时间:
2020-01-13 19:39:54
阅读次数:
335
php操作数据库八步走 <?php // 1、建立连接 $connection = mysqli_connect('127.0.0.1', 'root', '123456'); // 2、判断连接是否成功 if (mysqli_connect_error() != null) { die(mysql ...
分类:
数据库 时间:
2020-01-13 12:42:12
阅读次数:
111
一、基本定义 C3P0是一个开源的JDBC连接池,它实现了数据源与JNDI绑定,支持JDBC3规范和实现了JDBC2的标准扩展说明的Connection和Statement池的DataSources对象。 即将用于连接数据库的连接整合在一起形成一个随取随用的数据库连接池(Connection poo ...
分类:
数据库 时间:
2020-01-12 21:54:37
阅读次数:
102
使用python 3.7 pymssql 连接本地mysql 5.6 报错 解决:参考 https://www.cnblogs.com/springbrotherhpu/p/11503139.html https://blog.csdn.net/llx1026/article/details/795 ...
分类:
数据库 时间:
2020-01-12 19:53:34
阅读次数:
457