- 浏览: 173213 次
- 来自: ...
最新评论
-
ooo456mmm:
好东西,支持支持。
利用bat反编译jar包生成源码jar包 -
shangxuejin:
你试过吗?不对吧
nginx expires 绝对过期时间 -
大蒜头:
谢谢你的东西,谢谢!
利用bat反编译jar包生成源码jar包 -
seavers:
cloverprince 写道find . -name .sv ...
批量转换GBK到UTF-8 -
cloverprince:
find . -name .svn -prune -o -na ...
批量转换GBK到UTF-8
文章列表
本文翻译自: http://maven.apache.org/plugins/maven-war-plugin/war-mojo.htmlwar:war全路径: org.apache.maven.plugins:maven-war-plugin:3.1.0:war描述: 构建一个 WAR文件.特征:* [必须] 一个maven工程用于执行* [必须] artifacts的依赖范围: compile+runtime* 此目标是线 ...
通过idea的api导出来的,所以可以保证是最全的快捷键
按字母排序快捷键, 可以清楚的全面记忆快捷键idea "mac os X 10.5+" 版本的
CMD+A
$SelectAll
CMD+B
GotoDeclaration
CMD+C
$Copy
CMD+D
CompareTwoFiles
CMD+D
Diff.ShowDiff
CMD+D
EditorDuplicate
CMD+D
FileChooser.GotoDesktop
CMD+D
SendEOF
CMD+E
RecentFile ...
小清新网站标准 纯属YY
采用微博登录
提供iphone,android,html5版本
采用小新清设计原则: 色块背景, 图文混排, 配色明亮, 合适留白
新删改采用ajax请求, 支持滚动式翻页
restful url
icon式文字, 文字式按钮
赞, 评论, 分享, 收藏, 加关注
下载整站
wget -r -nv --restrict-file-names=nocontrol http://seavers.iteye.com/
下载时可以加 -np, 不下载父目录
wget -r -nv --restrict-file-names=nocontrol -np http://seavers.iteye.com/blog/
下载时, 加入断点续传
wget -r -nv -c --restrict-file-names=nocontrol http://seavers.iteye.com/
--restrict-file-names=noco ...
sudo vi /sbin/ipconfig
#! /bin/bash
for word in `ifconfig eth0 | grep "inet addr" | sed 's/ inet addr/addr/g'`; do echo $word | sed 's/:/\t/g'; done
route -n | awk '/UG/ {printf "gateway %-21s %s\n", $2,$8}' ;
grep nameserver /etc/resolv.conf ;
sudo chmod ...
以下是为了让ubuntu进入windows网络,实现互ping,互连
1. ubuntu进入windows网络,必须安装samba
sudo apt-get install samba
2. 修改/etc/samba/smb.conf, 将wins server修改为正确的ip
可以在windows上, 敲入ipconfig /all得到具体ip
3. 重启服务
sudo service nmbd restart
4. 验证下
nmblookup -R -U <wins_server_ip> <hostname>
5. 这时wind ...
ubuntu 使用五笔输入法
ubuntu 13.10 测试通过
sudo apt-get install ibus-table-wubi
ibus-daemon -x -r -d
选择五笔输入,生效
使用SHIFT+SPACE切换全半角
使用SHIFT切换中英文输入
sudo apt-get remove python 后, 出现了很多错误, 导致后续的无法进行
pycompile not found
解决方案: 删掉 /usr/bin/pycompile, 然后继续apt-get -f install / remove
gconf2 not found 错误
sudo dpkg-reconfigure gconf2
sudo apt-get --purge remove gconf2
gconf2安装时 gconf-schemas not found
因安装gconf2时,需执行脚本,脚本中需要python,而python需要gconf2
导致 ...
我们在maven中有时候希望将某个依赖包彻底去除
如我们的系统使用的是spring3.1.2, 但是依赖的二方包中, 总是或多或少依赖了spring2.5.6, 希望有个方法, 能全局去除掉
<!-- globally exclusion -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.6.SEC03</version>
...
A: 如何通过Class.forName 返回 String[].class
Q: Class.forName("[Ljava.lang.String;")
因为 String[].class.getName() => "[Ljava.lang.String;"
经测试, 反过来, 也成立
因此:
在sqlmap-config.xml可以这样写
<typeHandler javaType="[Ljava.util.String;" callback="xxxxxx.StringArrayTypeHan ...
今天配置typehandler时碰到一个问题
主要解决的问题是
java.sql.SQLException: Cannot convert value '0000-00-00 00:00:00' from column 18 to TIMESTAMP
解决方案: 替换掉系统默认的 typehandler, 抛出异常时,改为null
<?xml version="1.0" encoding="GBK"?>
<!DOCTYPE sqlMapConfig
PUBLIC "-//iBATIS.com//DTD SQL ...
ubuntu下 apt-get update 时,报错
下列签名无效: NODATA 1 NODATA 2
原因是: 网络连接出错了, 对应的网址连不上去
比如: archive.ubuntu.com, 连接不上, 可换成 cn.archive.ubuntu.com
或者: 网络有代理, 什么的被拦截了
ubuntu 安装 maven3的方法就是
sudo apt-get install maven
一直以来, 以为 install maven安装的是 maven1.x
而 install maven2 安装的是 maven2.x
而看到某些论坛说安装maven3, 要使用 ppa ,
后来才知道错了
install maven 安装的就是最新版本的maven
在 12.04, 13.04 测试通过
svn 与 git 保持同步
先svn checkout url 把svn上的代码checkout下来
进入工程目录
git init
git remote add origin git@github.com:username/project.git
git pull
git branch --set-upstream master origin/master
git reset
git status
git commit -a -m "update"
git push
其中 git reset 不好处理,可以
git reset --hard
svn -R ...
nginx expires 绝对过期时间
参考: http://wiki.nginx.org/HttpHeadersModule
expires 24h;
expires modified +24h;
expires @15h30m;
expires 0;
expires -1;
expires epoch;
@time 表示绝对过期时间, 基于一天的某个时间点来过期
@15h30m, 这里的意思是每天15点30分的时候,请求过期
举例, 比如
访问时间为 08:00, ...