- 博客(73)
- 资源 (15)
- 收藏
- 关注
原创 java调用mysql命令导入脚本方案
背景:使用java调用ibatis-common-2.jar中的ScriptRunner类中的runScript方法执行mysql脚本时,表能创建成功,但是FUNCTION没有成功,/!50003…/中注释的内容只有mysql本身的解析器可以执行,其他的程序会忽略掉,所以没有成功。既然只有mysql才能完整的解析脚本,那用mysql本身的命令去执行就好了,本方案才应运而生。以下为范例:/*Table
2016-08-05 13:15:30 1519
原创 Linux禁用与开放端口操作记录
前言: 445端口 445端口在Windows 2000 Server或Windows Server 2003系统中提供局域网中文件或打印机共享服务。 3389端口 3389端口是Windows2000(2003)Server远程桌面的服务端口 445与3389是黑客的最爱,所以服务器端尽量将其禁用。 禁用端口 iptables -I INPUT -p tcp –dport 3389
2018-01-30 16:01:23 3123
原创 git初级入门总结
1.初始化用户信息git config --global user.name xxxgit config --global user.email xxx.com2.创建本地仓库git initgit remote add origin http://xxx.git3.创建分支git branch v1.0切换分支git checkout v1.04.提交本地代码...
2017-12-25 22:01:42 276
原创 python图像处理入门
1.转换成灰度图片from PIL import ImageImage.open('in.jpg').convert('L').save('out.jpg');一行代码搞定,是不是很酷~2.图形复制与粘贴from PIL import Imageimport ospil_im = Image.open('in.png');box = (0,162,30,192)box2 = (200,16
2017-11-26 11:20:01 502
原创 Win7开启IPV6总结
启用ISATAP策略 gpedit.msc 开启IP Helper服务 services.msc 在 ” 开始 ”->” 运行 ” 中输入 cmd 打开 windows 命令行。 在命令行中输入 netsh int teredo show state 出现 Teredo 参数 : 若“ 状态 ”为 dormant / qualified ,则表示已连接服务器并...
2017-11-17 14:31:18 8394 1
原创 nginx线上问题记录
线上异常处理nginx问题 查看进程号 [root@iZ2zec26e3gtl8s7oelouoZ sbin]# ps -ef|grep nginx root 18821 1 0 11:32 ? 00:00:00 nginx: master process nginx -c /export/tools/nginx-bin/conf/nginx.conf n
2017-11-10 11:45:33 437
转载 mysql主从复制
mysql主从复制 http://369369.blog.51cto.com/319630/790921/ Mysql 5.6主从同步配置与解决方案 http://www.cnblogs.com/kezf/p/mysql-slave.html
2017-10-11 15:13:49 211
原创 android开发异常积累
Caused by: java.lang.IllegalStateException: ScrollView can host only one direct child2.
2017-09-01 20:40:01 298
转载 房产中介的陷阱(转)
房产中介陷阱,请大家进来讨论,希望大家以后注意 http://weifang.sdnews.com.cn/wflt/201205/t20120523_684687.html 如果你要在恒信买房子,你流露出不想买的想法后,几个人轮番上阵让你买房子,有点类似网警提示;让你签合同。大家注意一定不要签,如果你签了那么我接下来的经历或许是你的悲剧: 1、中介费骗局:合同上明确注明中介费签订合同时收取,实
2017-06-20 19:26:36 672
转载 java nio教程(转)
Java NIO Tutorial http://tutorials.jenkov.com/java-nio/overview.html 作者简介 About Jenkov ApsJenkov Aps is a tech company engaged in a variety of different projects in the tech and media space.Entrepre
2017-06-19 18:28:51 273
原创 同样的错只犯一次
同样的错只犯一次, 是一种追求,也是一种挑战, 同样的错只犯一次, 让我时长陷入沉思,错误来自哪里, 同样的错只犯一次, 让我学会分析,做事更谨慎,心思更细腻, 同样的错只犯一次, 让我学会看清本质,摸清关系, 同样的错只犯一次, 让我的生活充满乐趣,有了意义, 同样的错只犯一次, 让我开始遇见更好的自己~
2017-06-15 15:11:22 451
转载 JVM调优总结 -Xms -Xmx -Xmn -Xss(转)
http://unixboy.iteye.com/blog/174173/ 堆大小设置 JVM 中最大堆大小有三方面限制:相关操作系统的数据模型(32-bt还是64-bit)限制;系统的可用虚拟内存限制;系统的可用物理内存限制。32位系统下,一般限制在1.5G~2G;64为操作系统对内存无限制。我在Windows Server 2003 系统,3.5G物理内存,JDK5.0下测试,最大可设置为1
2017-06-09 09:33:44 267
转载 java异常总结(转)
Java异常处理实战经验总结 http://www.cnn6.net/html/java/201762/201929.html?ref=myread Java异常处理的陋习展播 http://blog.jobbole.com/30230/
2017-06-03 09:40:41 291
原创 StringUtils.join方法总结
StringBuffer sb=new StringBuffer();sb.append("x,y,z,");List<String> list=new ArrayList<String>();list.add("a");list.add("b");list.add("c");String listjoin=StringUtils.join(list);String listjoin2
2017-03-22 16:12:14 16615 1
原创 eclipse配置参数
-startup plugins/org.eclipse.equinox.launcher_1.3.200.v20160318-1642.jar –launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.400.v20160518-1444 -product org.eclipse.epp.p
2017-03-15 10:59:51 833
转载 彻底解决Dynamic Web Module 3.0 or 2.5 requires Java 1.6 or newer.
转自: http://www.ithao123.cn/content-9084290.html 最近在做版本切换的时候经常遇到的一个问题就是Dynamic Web Module 2.5 requires Java 1.6 or newer.可以说是弄到恶心的地步了,还好不是什么大问题经过一天的努力在网上各种找解决方案总的来说都没有说全,所以我决定自己来整理一份彻底的解决方案:
2017-02-22 18:27:03 1790
转载 步步深入:MySQL架构总览->查询执行流程->SQL解析顺序
http://www.2cto.com/database/201512/453280.html
2017-01-18 19:14:00 344
转载 警惕 MySql 更新 sql 的 WHERE 从句中的 IN() 子查询时出现的陷阱
警惕 MySql 更新 sql 的 WHERE 从句中的 IN() 子查询时出现的陷阱 http://blog.csdn.net/defonds/article/details/46745143
2016-12-17 07:12:07 798
原创 mysql权限
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY PASSWORD '*E56A114692FE0DE073F9A1DD68A00EEB9703F3F1' WITH GRANT OPTION ;FLUSH PRIVILEGES;重启mysql
2016-10-11 17:39:09 333
原创 excel导出数据反射+注解
package com.xx.system.util;import java.lang.reflect.Field;import java.lang.reflect.InvocationTargetException;import java.lang.reflect.Method;import java.math.BigDecimal;import java.text.NumberForma
2016-10-09 17:04:42 478
原创 钱,金额,money的格式化输出
private static String getMoneyString(String money) throws Exception{ if(!isNumber(money)){ throw new Exception("格式错误:"+money); } NumberFormat nf = new DecimalFormat(
2016-10-09 16:57:45 833
原创 "Host 'USER-XXXX' is not allowed to connect to this MySQL server"
jdbc.driverClassName = com.mysql.jdbc.Driverjdbc.url = jdbc\:mysql\://192.168.1.34\:3306/test
2016-09-19 17:05:12 348
转载 is not allowed to connect to this MySQL server
http://www.cnblogs.com/xyzdw/archive/2011/08/11/2135227.html
2016-09-14 17:34:58 412
原创 spring配置文件location引用外部文件
<!-- 数据库配置文件位置 --> <context:property-placeholder location="file:///D:/conf/config.properties"/>
2016-09-10 15:45:38 750
转载 mybatis IF判断
【mybatis】IF判断的坑 http://cheng-xinwei.iteye.com/blog/2008200<if test="type=='1'"> and status ='ok' </if> 以上代码无论如何是执行不了的, 已改为<if test='type=="1"'> and status ='ok' </if>
2016-09-09 21:32:36 266
原创 proguard遇到的问题
Exception in thread "main" java.lang.ClassFormatError: LVTT entry for 'map' in class file com/wd/handler/AbstractHandler does not match any LVT entry Exceptions,InnerClasses,Signature,Deprecated,Sour
2016-09-05 16:05:46 947 1
原创 Unable to locate Spring NamespaceHandler for XML schema namespace [xx.xx/context]
Exception in thread "main" org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://ww
2016-09-03 19:36:52 307
原创 理性与感性
理性是物质,看到了的是本质,本质的本质是频率,相同的频率产生吸引力,这个吸引力就是人们通常说的感觉,有了感觉理性就上升为了感性,感性即为直觉。有了直觉。。。。。。
2016-08-27 08:43:55 572
原创 盲人摸象
从盲人摸象让我看到了交流的重要性,也看到了个人的局限性,更看到了人性的弱点,每个人都坚持自己看到的是对的,不肯低头向别人请教,做到不耻下问~试问自己,我能做到不耻下问吗?
2016-08-27 08:39:22 576
转载 MySQL追加注释或者大量修改注释
MySQL后期追加注释比较麻烦,需要使用modify语法。只要不小心写错一点,就可能导致表结构的变更,而不是注释的变更.
2016-08-19 15:41:26 3271
原创 eclipse 启动tomcat参数配置
-Dcatalina.base="D:\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1" -Dcatalina.home="D:\ide\apache-tomcat-7.0.70" -Dwtp.deploy="D:\workspace\.metadata\.plugins\org.eclipse.wst.server.cor
2016-08-11 16:26:35 1029
原创 通过注释查找字段和表名
SELECT COLUMN_NAME,column_comment,Table_NAME FROM INFORMATION_SCHEMA.Columns WHERE table_schema=’数据库名’ AND column_comment LIKE ‘%代课%’;
2016-08-10 15:55:05 1139
转载 mysql日志详细解析
mysql日志详细解析,记录一下~ http://pangge.blog.51cto.com/6013757/1319304
2016-08-05 17:50:13 313
原创 mysql xxx.err文件内容记录
xxx.err文件内容,位于data目录下160804 23:54:59 [Note] Plugin 'FEDERATED' is disabled.160804 23:54:59 InnoDB: Initializing buffer pool, size = 106.0M160804 23:54:59 InnoDB: Completed initialization of buffer
2016-08-05 15:24:41 2846
jsonlib2.4
2016-07-01
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人