`
文章列表
01 开源跳板机(堡垒机):认证,授权,审计,自动化运维 https://github.com/jumpserver/jumpserver 02 spring-shiro-training http://git.oschina.net/wangzhixuan/spring-shiro-training
不同编程语言中获取现在的Unix时间戳 http://blog.csdn.net/huangjihua0402/article/details/6900090 Unix时间戳是国际统一的,由 当地时间 和 时区 确定的。 所以在讨论Unix时间戳有差距时 是和时区无关的,主要是时间是否准确。 可以通过下面的网站实时查看当前Unix时间戳 www.currenttimestamp.com
将Sublime Text 添加到鼠标右键菜单的教程方法 http://www.cnblogs.com/michael-xiang/p/4831970.html HKEY_CLASSESS_ROOT->*->Shell 新建appName文件夹 图标:appName文件夹-->新建Icon项=path/you_app.exe,0 命令:appName文件夹-->command文件夹-->默认项=path/you_app.exe %1
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); HttpServletResponse response = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getResponse(); response.reset(); response.setContentTyp ...
详解Java中的时区类TimeZone的用法 http://www.jb51.net/article/85930.htm
JDBC连接Oracle数据库简单步骤 http://www.jianshu.com/p/545060a51aa2
http://jingyan.baidu.com/article/eae078278680c11fec548509.html windows: echo %ORACLE_SID% set ORACLE_SID=orcl sqlplus / as sysdba alter user you_username identified by you_password; alter user you_username account unlock; linux: echo $ORACLE_SID set ORACLE_SID=orcl sqlplus / as sysd ...
var map = {}; map['userid']= '123456'; map['SCYver']= '0.1'; map['SCYuserid']= '087654'; map['SCYtimestamp']= '123456789'; var arr = new Array(),i = 0; for (var key in map) { if (map.hasOwnProperty(key)) { arr[i++]=key; } } var arr2 = arr.sort(); alert(arr2.length); var signSt ...
使用Joda-Time优雅的处理日期时间 http://www.jianshu.com/p/efdeda608780
Java中反射性能测试 http://blog.csdn.net/woshixuye/article/details/22948601
web.xml中的url-pattern详解 http://blog.csdn.net/qq_25218095/article/details/51788063
Java中List与Map初始化的一些写法分享 http://www.jb51.net/article/45341.htm
01 Java Map遍历方式的选择 http://www.cnblogs.com/fczjuever/archive/2013/04/07/3005997.html
package api.xxx.utils; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class MD5 { private static char md5Chars[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}; public static String md5(String str) { ...
01 属性文件|env.properties #Memcached 服务器地址 memcached.address=127.0.0.1:11211 02 spring-base.xml 摘要 <context:property-placeholder location="classpath:env.properties" /> 03 SpringUtil.java package com.xxx.utils; import org.springframework.beans.BeansException; import org.s ...
Global site tag (gtag.js) - Google Analytics