摘要: 【转载自:https://blog.csdn.net/gsls200808/article/details/48104217】 如图所示 原因是通过第三方更新JRE时,第三方安装的是32位的JRE,与64位的eclipse不匹配(报错信息的--launcher.library中有x86_64说明这个 阅读全文
posted @ 2018-05-10 23:25 kino_熊 阅读(343) 评论(0) 推荐(0) 编辑
摘要: HtmlUtils.htmlUnescape(vo.getQzkhMc().replace(" ", "")); 阅读全文
posted @ 2018-05-10 23:24 kino_熊 阅读(607) 评论(0) 推荐(0) 编辑
摘要: su:Swith user 切换用户,切换到root用户cat: Concatenate 串联uname: Unix name 系统名称df: Disk free 空余硬盘du: Disk usage 硬盘使用率chown: Change owner 改变所有者chgrp: Change group 阅读全文
posted @ 2018-05-10 23:20 kino_熊 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Field[] fields = xxxx.class.getDeclaredFields(); // 获取实体类的所有属性,返回Field数组 fields[0].setAccessible(true ); field.getName(); // 获取字段名称 field.get("fieldNa 阅读全文
posted @ 2018-05-10 23:19 kino_熊 阅读(4423) 评论(0) 推荐(0) 编辑
摘要: @Test public void TestfindViolation() { String resource = "com/gac/violation/resource/test/conf.xml"; InputStream is = BusinessServiceTest.class.getCl 阅读全文
posted @ 2018-05-10 22:59 kino_熊 阅读(185) 评论(0) 推荐(0) 编辑
摘要: #:1、例子:sql语句为:SELECT NAME FROM student_table WHERE id = #{id} 传入的 id = 1,则sql语句为:SELECT NAME FROM student_table WHERE id = "1" 2、作用:防止sql注入,迅速 $:1、例子: 阅读全文
posted @ 2017-10-20 11:06 kino_熊 阅读(108) 评论(0) 推荐(0) 编辑