摘要: https://www.cnblogs.com/yuteng/articles/1894578.html 我们来实现test中的onclick事件 function justAtest() { var test= document.getElementById("test"); var test2= 阅读全文
posted @ 2017-11-30 11:10 VectorLoveCathy 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 源码 public static Integer valueOf(int i) { if(i >= -128 && i <= IntegerCache.high) return IntegerCache.cache[i + 128]; else return new Integer(i); } 浮点 阅读全文
posted @ 2017-09-12 16:19 VectorLoveCathy 阅读(212) 评论(0) 推荐(0) 编辑
摘要: list for循环remove(index)list 下标会改变使用iterator 迭代 Remove(index) 阅读全文
posted @ 2017-09-04 16:32 VectorLoveCathy 阅读(120) 评论(0) 推荐(0) 编辑
摘要: SVN历史版本比较中文乱码 SVN历史版本比较中文乱码 将Workspace的编码改为UTF-8即可 屁 welogic 最后一个 set JAVA_OPTIONS=%JAVA_OPTIONS% -Dfile.encoding=utf-8 控制台乱码 将Workspace的编码改为UTF-8即可 屁 阅读全文
posted @ 2017-08-16 10:00 VectorLoveCathy 阅读(504) 评论(0) 推荐(0) 编辑
摘要: properties 菜单——>Preferences——>General——>ContentTypes——>Text——>Java Properties File,设置Default encoding,把下面的ISO-8859-1改为UTF-8或者GBK(推荐UTF-8),然后update,如下图 阅读全文
posted @ 2017-08-16 09:35 VectorLoveCathy 阅读(109) 评论(0) 推荐(0) 编辑
摘要: No bean named 'cacheManager' is defined 原贴 http://www.jianshu.com/p/5a964f49ec26 在springMVC中,启动项目时报异常,排查后才发现是spring配置文件中的头(scheme)引入错误 注意:配置文件中的xsi:sc 阅读全文
posted @ 2017-08-07 22:25 VectorLoveCathy 阅读(429) 评论(1) 推荐(1) 编辑
摘要: http://gong1208.iteye.com/blog/1773177 Spring定时任务的几种实现 近日项目开发中需要执行一些定时任务,比如需要在每天凌晨时候,分析一次前一天的日志信息,借此机会整理了一下定时任务的几种实现方式,由于项目采用spring框架,所以我都将结合 spring框架 阅读全文
posted @ 2017-07-18 14:17 VectorLoveCathy 阅读(223) 评论(0) 推荐(0) 编辑