package utils;import com.mchange.v2.c3p0.ComboPooledDataSource;import javax.sql.DataSource;import java.sql.Connection;import java.sql.ResultSet;import ...
分类:
其他好文 时间:
2019-08-01 10:31:44
阅读次数:
147
有4到5天没开mysql,这天晚上打=打开phpstudy,想进去mysql练习练习,结果丢给我这个 ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', syst ...
分类:
数据库 时间:
2019-08-01 00:03:34
阅读次数:
136
1、Connection:主要是开启程序和数据库之间的连接。没有利用连接对象将数据库打开,是无法从数据库中取得数据的。 Close和Dispose的区别,Close以后还可以Open,Dispose以后则不能再用。 2、Command:主要可以用来对数据库发出一些指令,例如可以对数据库下达查询、新增 ...
分类:
Web程序 时间:
2019-07-31 18:31:31
阅读次数:
119
1. 页面中数据提交到 Controller 中如何处理 a) 如果自定义 Controller 是实现 spring 的 Controller 的接口,那么可以通过 HttpServletRequest 来获取数据。 b) 如果自定义的 Controller 没有实现 spring 的 Contr ...
分类:
编程语言 时间:
2019-07-31 01:03:13
阅读次数:
107
在使用 HttpClient 工具调用第三方 Http 接口时报错 javax.net.ssl.SSLException:Unrecognized SSL message,plaintext connection? 这个错误意思是说,无法识别 SSL 信息,明文连接? 看这个意思是说在使用 http ...
分类:
Web程序 时间:
2019-07-30 21:53:01
阅读次数:
332
Java连接MySql插入数据的代码packagecom.chendan.maven;importjava.sql.Connection;importjava.sql.DriverManager;importjava.sql.PreparedStatement;importjava.sql.ResultSet;publicclassMavenTest{publicstaticvoidmain(St
分类:
数据库 时间:
2019-07-30 21:37:30
阅读次数:
114
sudo docker run hello-world docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for con ...
分类:
Web程序 时间:
2019-07-29 23:05:52
阅读次数:
464
使用 @ ExceptionHandler 注解 实现 HandlerExceptionResolver 接口 使用 @controlleradvice 注解 1. 使用 @ ExceptionHandler 注解 使用该注解有一个不好的地方就是:进行异常处理的方法必须与出错的方法在同一个Contr ...
分类:
编程语言 时间:
2019-07-29 21:43:44
阅读次数:
132
MySQL常用(目前线上使用)的线程调度方式是one-thread-per-connection(每连接一个线程),server为每一个连接创建一个线程来服务,连接断开后,这个线程进入thread_cache或者直接退出(取决于thread_cache设置及系统当前已经cache的线程数目),one ...
分类:
数据库 时间:
2019-07-24 13:45:59
阅读次数:
130
原题链接在这里:https://leetcode.com/problems/redundant-connection-ii/ 题目: In this problem, a rooted tree is a directed graph such that, there is exactly one ...
分类:
其他好文 时间:
2019-07-24 13:28:42
阅读次数:
94