404页面的含义就是找不到页面 可以看一下springmvc定义404的源码 // Determine handler for the current request.mappedHandler = getHandler(processedRequest, false);if (mappedHand ...
分类:
其他好文 时间:
2018-03-12 17:03:06
阅读次数:
169
CentOS默认没有呼出终端快捷键,需要设置 菜单: System Preferences Keyboard Shortcuts,在Desktop分类下找到“Run a terminal”点击Run a terminal,按下需要的快捷键,比如Ctrl+Alt+T 补充终端窗口下的快捷键 复制 Sh ...
分类:
其他好文 时间:
2018-03-11 14:33:30
阅读次数:
174
spark streaming task 序列化源码 1.入口 2.RDD.scala foreachPartition 代码逻辑 3.SparkContext runJob 代码逻辑 4.DAGScheduler runJob 代码逻辑 5.DAGSchedulerEventProcessLoop ...
分类:
其他好文 时间:
2018-03-08 18:06:11
阅读次数:
181
转自:CSDN--http://blog.csdn.net/cherry_vicent/article/details/42120149 1、javascript是什么 根据用户的一些操作,然后来修改页面上的一些元素、属性等。 (1)HTML+CSS静态页面,JS给页面添加动的效果 (2)网页特效的 ...
分类:
编程语言 时间:
2018-03-07 16:25:25
阅读次数:
209
原题链接: "https://leetcode.com/problems/word search/description/" 做完上一题: "212. Word Search II" ,我就知道有二必有一,那么再做这第一道题目就太简单了,不废话思路是一样的还是回溯法: Java class Solu ...
分类:
其他好文 时间:
2018-03-07 15:04:19
阅读次数:
122
yum源中默认好像是没有mysql的。为了解决这个问题,我们要先下载mysql的repo源。 1. 下载mysql的repo源 wget http://repo.mysql.com/mysql community release el7 5.noarch.rpm 2. 安装mysql communi ...
分类:
数据库 时间:
2018-03-07 13:26:52
阅读次数:
188
基本算法对比: 总结:当n数据量大,稳定性且性能最好的是归并, 当n数据量小,稳定性且性能最好的用冒泡 当已排序好的列表,最好用插入 常见的算法时间复杂度由小到大依次为:Ο(1)<Ο(log2n)<Ο(n)<Ο(nlog2n)<Ο(n2)<Ο(n3)<…<Ο(2n)<Ο(n!) 通常,对于一个给定的 ...
分类:
编程语言 时间:
2018-03-07 00:48:53
阅读次数:
202
题目描述:Checker Challenge 1000(ms) 10000(kb) 20 / 90 Examine the 6x6 checkerboard below and note that the six checkers are arranged on the board so that ...
分类:
其他好文 时间:
2018-03-04 19:58:50
阅读次数:
162
题目链接:http://codeforces.com/problemset/problem/368/B 题目: Sereja has an array a, consisting of n integers a1, a2, ..., an. The boy cannot sit and do not ...
分类:
其他好文 时间:
2018-03-04 10:35:19
阅读次数:
197