http://blog.51cto.com/461205160/1736383 为crontab中的任务增加自…
不静之心

Java之定时器任务Timer用法
https://www.linuxidc.com/Linux/2018-08/153448.htm 1. pu…
apache安装证书
首先得到证书,收费也好,免费也好。 防火墙
1 2 3 |
firewall-cmd --list-all firewall-cmd --permanent --zone=public --add-port=443/tcp firewall-cmd --reload |
…
WordPress增加备案号
WordPress显示备案号 https://www.cnblogs.com/tinyphp/p/579935…
Let’s Encrypt 使用免费的SSL证书,拥抱 HTTPS
Let’s Encrypt 使用教程,免费的SSL证书,让你的网站拥抱 HTTPS http://…
十大经典排序算法(动图演示)
https://my.oschina.net/lwl1989/blog/1840414 很有意思
如何将网页转换成Android APP
https://blog.csdn.net/fjnu_se/article/details/72848016 …
java spring 发送邮件
https://my.oschina.net/u/3391025/blog/1842595 这里做得很不错
nativefier-用一行代码将任意网页转化为桌面应用
官方文档: https://github.com/nativefier/nativefier/blob/mas…
Spring之RestTemplate介绍
http://elim.iteye.com/blog/2427553 这个东西很值得学习,很有用
使用Hessian获取客户端IP等信息
http://wesee.iteye.com/blog/663876 我们查看HessianSe…
[SpringMVC]自定义注解实现控制器访问次数限制
https://www.cnblogs.com/xiaoyangjia/p/3762150.html
自己整合SpringMVC+Hessian
Hessian知识学习总结 https://blog.csdn.net/wodediqizhang/artic…
java内嵌浏览器
SWT Browser(内嵌浏览器) https://blog.csdn.net/hemingwang090…
解决ckeditor在bootstrap和jquery ui中modal中弹框无法输入问题
Bootstrap: https://blog.csdn.net/Fabuler/article/detail…
Quartz存储与持久化-基于quartz.properties的配置
文章 https://blog.csdn.net/Evankaka/article/details/45540…
Activiti5 自定义查询语句 TaskQuery查询 条件查询 like查询
https://my.oschina.net/xiaominmin/blog/1821811 TaskQuer…
简单工厂、工厂方法、抽象工厂、策略模式、策略与工厂的区别
详细参考: https://my.oschina.net/fadoudou/blog/1809105
文件监控,实时监控文件加载(Commons-io)
https://my.oschina.net/u/3616084/blog/1801987 1.启动代码 [c…
mybatis比较符号转义
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
第一种写法(1): 原符号 < <= > >= & ' " 替换符号 < <= > >= & ' " 例如:sql如下: create_date_time >= #{startTime} and create_date_time <= #{endTime} 第二种写法(2): 大于等于 <![CDATA[ >= ]]> 小于等于 <![CDATA[ <= ]]> 例如:sql如下: create_date_time <![CDATA[ >= ]]> #{startTime} and create_date_time <![CDATA[ <= ]]> #{endTime} |
关于新版jquery用on()方法代替live方法的正确使用方式
jquery 1.7以后版本取消了live()方法,改用on来取代。 这里简单的说明下用法,不是大家想当然的把…
利用css3修改input[type=radio]样式
原文写很好 https://segmentfault.com/a/1190000009451568
Fel是轻量级的高效的表达式计算引擎
http://itindex.net/detail/44416-fel-%E8%BD%BB%E9%87%8F%…
Jexl例子
Apache Commons JEXL 语法 https://ridikuius.github.io/Apac…
SpringMVC 数据格式化
文章介绍很好,值得查看: https://my.oschina.net/GL24568/blog/164740…
Mybatis 自定义SqlSessionFactoryBean扫描通配符typeAliasesPackage
Mybatis 自定义SqlSessionFactoryBean扫描通配符typeAliasesPackage…
每个系统管理员都要知道的 30 个 Linux 系统监控工具
每个系统管理员都要知道的 30 个 Linux 系统监控工具 https://my.oschina.net/9…
Linux系统下history命令的记录如何删除
history命令的记录如何删除? 1、修改/etc/profile将HISTSIZE=1000改成0或1 清…
PO/VO/BO/DTO/POJO/DAO
https://my.oschina.net/u/3496297/blog/1618937 1、基本介绍 PO…
使用mybatis的ScriptRunner执行sql文件
http://blog.csdn.net/dream_broken/article/details/54340…
SpringMVC扫描过滤
1 2 3 4 5 6 7 8 |
<context:component-scan base-package="com"> <context:include-filter type="regex" expression=".pandy.*"/> <context:include-filter type="regex" expression=".auto.*"/> <context:include-filter type="regex" expression=".his.*"/> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/> </context:component-scan> |
springmvc fastjson与Jackson的MessageConverter配置
Jackson spring的兼容性比较好,推荐使用,不要轻易使用fastjson来做controller转换…
spring装配bean之通过java代码装配bean
spring装配bean之通过java代码装配bean https://my.oschina.net/u/37…
d3和css实现一条线的动画
D3方式: 原文: https://segmentfault.com/a/1190000000453579 通…
js增加,删除,修改树结构的节点数据
增加
1 2 3 4 5 6 7 8 9 10 11 12 |
function addTreeNode(root, id, obj) { if (root.id == id) { if (root.children == null) root.children = []; root.children.push(obj); return true; } else if (root.children && root.children.length > 0) { for (var i = root.children.length - 1; i >= 0; i--) { addTreeNode(root.children[i], id, obj); } } } |
修改 [crayon-6816174a…