1、安装APR-1.2.7和APR-util-1.2.7

2、编译安装APACHE。 依赖如下

1
./configure -prefix=/usr/local/apache2 -enable-module=so --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre

3、安装svn

1
./configure --with-apxs=/usr/local/apache2 /bin/apxs --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr

4、启动

1
svnserve -d -r /opt/svn/repos --listen-port 3691

CSS,bootstrap表格控制当td内容过长时用省略号表示,以及在不使用bootstrap时过长也用省略号表示
首先需要在table中设置table-layout:fixed;

1
<table style="table-layout:fixed"></table>

然后在表头th中设置每列的宽度

1
2
3
4
5
<table style="table-layout:fixed">
<th width="10%">Title01</th>
<th width="20%">Title02</th>
<!-- 其他th -->
</table>

然后在需要当长度大于一定数值时用省略号表示的td上面添加样式

1
2
3
4
5
6
7
8
9
10
<table style="table-layout:fixed">
<th width="10%">Title01</th>
<th width="20%">Title02</th>
<!-- 其他th -->
<c:foreach items = "" var ="" varStatus = "">
<td><title01</td>
<td style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;"><title02</td>
<!-- other td -->
</c:foreach>
</table>

bootstrap在设置表格大小时需要设置到th中,否则可能不会生效,以上在bootstrap中可用

当不使用bootstrap的时候可以使用如下样式,网上搜索到的,比较好用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
.mytable {
table-layout: fixed;
width: 98% border:0px;
margin: 0px;
}
.mytable tr td {
text-overflow: ellipsis; /* for IE */
-moz-text-overflow: ellipsis; /* for Firefox,mozilla */
overflow: hidden;
white-space: nowrap;
border: 1px solid;
text-align: left
}
</style>
</head>
<body>
<table width="500px" class="mytable">
<tr>
<td width="20%">再别康桥</td>
<td width="80%">
轻轻我走了,正如我轻轻地来,我挥一挥衣袖,不带走一片云彩
</td>
</tr>
</table>
</body>
</html>

一行代码汇总

Maven

Maven 手动安装

1
mvn install:install-file -Dfile=/Users/pingansheng/Desktop/maven-assembly-plugin-2.6.jar -DgroupId=org.apache.maven.plugins -DartifactId=maven-assembly-plugin -Dversion=2.6 -Dpackaging=jar

SHELL

获取Java WebService客户端代码

1
wsdl2java -d D:\\src -client http://api.xxx.cn/xxxAPI/service/auditResBatchQueryService?wsdl

linux查看文件夹目录大小

1
du -h --max-depth=1

重建图标缓存

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
REM bat代码开始
REM 更新:增加清除系统托盘旧图标
REM 关闭Windows外壳程序explorer
taskkill /f /im explorer.exe
REM 清理系统图标缓存数据库
attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db"
del /f "%userprofile%\AppData\Local\IconCache.db"
attrib /s /d -h -s -r "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\*"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_32.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_96.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_102.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_256.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_1024.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_idx.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_sr.db"
REM 清理 系统托盘记忆的图标
echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v IconStreams
echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v PastIconsStream
REM 重启Windows外壳程序explorer.exe
start explorer

右键Notepad++打开

安装

1
2
3
4
5
6
7
8
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\NotePad++]
@="用&Notepad++打开"
"Icon"="C:\\Program Files (x86)\\Notepad++\\Notepad++.exe"
[HKEY_CLASSES_ROOT\*\shell\NotePad++\Command]
@="C:\\Program Files (x86)\\Notepad++\\Notepad++.exe \"%1\""

卸载

1
2
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\*\shell\NotePad++]

Web

DIV居中

1
2
3
4
5
<div style="text-align: center">
<!--里面的width必须设置才可以生效-->
<div style="width:900px;margin:0 auto;text-align: left">
</div>
</div>

正则

数字

1
2
3
4
#正实数,最多两位小数
^[0-9]+(.[0-9]{2})?$
#字母数字下划线
^\w+$

字符

1
2
#只匹配字母、中文、数字、下划线,顺序不限
^([ \u4e00-\u9fa5 a-zA-Z0-9_]+)$

Server

Java获取磁盘空间

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public String getDiskInfo() {
File diskPartition = new File("J:") ;
long totalCapacity = diskPartition.getTotalSpace();
long freePartitionSpace = diskPartition.getFreeSpace();
long usablePatitionSpace = diskPartition.getUsableSpace();
System. out.println("**** Sizes in Mega Bytes ****\n ");
System. out.println("Total C partition size : " + totalCapacity / (1024 * 1024) + " MB");
System. out.println("Usable Space : " + usablePatitionSpace / (1024 * 1024) + " MB");
System. out.println("Free Space : " + freePartitionSpace / (1024 * 1024) + " MB");
System. out.println(" \n**** Sizes in Giga Bytes ****\n ");
System. out.println(
"Total C partition size : " + totalCapacity / (1024 * 1024 * 1024) + " GB" );
System. out.println("Usable Space : " + usablePatitionSpace / (1024 * 1024 * 1024) + " GB" );
System. out.println("Free Space : " + freePartitionSpace / (1024 * 1024 * 1024) + " GB" );
}

可用性指标

指标 概率可靠性 每年允许不可用时间 典型场景
一个九 90% 1.2 个月 不可用
二个九 99% 3.6 天 普通单点
三个九 99.9% 8.6 小时 普通企业
四个九 99.99% 51.6 分钟 高可用
五个九 99.999% 5 分钟 电信级
六个九 99.9999% 31 秒 极高要求
七个九 99.99999% 3 秒 N/A
八个九 99.999999% 0.3 秒 N/A
九个九 99.9999999% 30 毫秒 N/A