周日,晴,记录生活分享点滴 参考博客:https://www.cnblogs.com/resn/p/5800922.html 环境变量 自定义账户的个性化环境的三个重要文件 (参考博客:https://blog.csdn.net/u011479200/article/details/86501366 ...
分类:
编程语言 时间:
2020-05-24 21:26:32
阅读次数:
74
1、核心代码块 @Test public void testConn() throws Exception { // 1. 加载数据库的连接驱动 // Driver=com.mysql.jdbc.Driver Class.forName("com.mysql.jdbc.Driver"); // 2. ...
分类:
数据库 时间:
2020-05-24 16:36:28
阅读次数:
46
安装centos时选择带gui的服务器->选择java环境 问题: Unrecognized option: -vError: Could not create the Java Virtual Machine.Error: A fatal exception has occurred. Progr ...
分类:
其他好文 时间:
2020-05-24 13:50:33
阅读次数:
144
中心扩展法。 class Solution { public: string longestPalindrome(string s) { int start = 0, end = 0; for (int i = 0; i < s.size(); ++i) { findLongest(s, i, i, ...
分类:
其他好文 时间:
2020-05-24 11:40:39
阅读次数:
50
//配置vs环境变量 C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterpr ...
分类:
其他好文 时间:
2020-05-24 11:38:26
阅读次数:
59
What is the difference between sed and awk sed is a stream editor. It works with streams of characters on a per-line basis. It has a primitive program ...
分类:
其他好文 时间:
2020-05-24 11:34:00
阅读次数:
81
Find the sum of all left leaves in a given binary tree. Example: 3 / \ 9 20 / \ 15 7 There are two left leaves in the binary tree, with values 9 and 1 ...
分类:
其他好文 时间:
2020-05-24 11:27:13
阅读次数:
52
编辑器:IDEA 系统:Win 10 包管理:maven SSM:SpringMvc、Spring、MyBatis 一、搭建 maven的父子工程 先建立 ssm 的父工程 review_ssm 再分别建立 domain、dao、service、utils子模块,以及最后创建使用maven的weba ...
分类:
其他好文 时间:
2020-05-24 10:12:33
阅读次数:
40
C:\Users\admin>netstat -ano|findstr 8088 TCP 0.0.0.0:8088 0.0.0.0:0 LISTENING 16888 TCP 127.0.0.1:8088 127.0.0.1:64254 ESTABLISHED 16888 TCP 127.0.0.1 ...
分类:
Web程序 时间:
2020-05-24 09:56:03
阅读次数:
54
macOX的快捷键与windows10有所不同,了解了以后会更加提高我们的工作效率. Mac中主要有四个修饰键,分别是Command,Control,Option和Shift。 一、基本的快捷键: Command是Mac里最重要的修饰键,在大多数情况下相当于Windows下的Ctrl。所以以下最基本 ...
分类:
系统相关 时间:
2020-05-24 09:28:40
阅读次数:
196