digdeep

凡是过去,皆是序幕。Read the fucking manual and source code.

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 37 下一页

2018年1月24日

摘要: 项目因为历史原因使用了 GBK编码,遇到非GBK编码字符时出现乱码问题,情况比较严重,暂时先打算修改 列的字符编码为 utf8mb4. 查看 mysql 手册: 用 GBK 编码转 utf8 进行说明: 他的大概意思是,如果 是 char varchar text 等类型的,并且这些列的内容也是采用 阅读全文
posted @ 2018-01-24 16:15 digdeep 阅读(518) 评论(0) 推荐(0)

2018年1月23日

摘要: nginx 配置不当,前端ajax调用报错: the server responded with a status of 414 (Request-URI Too Large) 浏览器F12报错如下: 原因是:url 中的 参数太长,超过了nginx默认值,解决方法: 在nginx.conf中加入下 阅读全文
posted @ 2018-01-23 17:17 digdeep 阅读(1012) 评论(0) 推荐(0)

2018年1月4日

摘要: 系统启动,一段时间不操作,然后在来操作时,报错如下: Caused by: java.sql.SQLException: Couldn't perform the operation getAutoCommit: You can't perform any operations on this co 阅读全文
posted @ 2018-01-04 16:14 digdeep 阅读(4544) 评论(0) 推荐(0)

2017年5月9日

摘要: $("#cbutton1").bind("click",{"id":"111","name":"aaa"},getData); 这一句给 cbutton1 指定了 click 事件的绑定函数为 getData,并且向该函数传递了JSON格式参数 {"id":"111", "name":"aaa"}. 阅读全文
posted @ 2017-05-09 11:11 digdeep 阅读(3603) 评论(0) 推荐(0)

2017年4月24日

摘要: jquery1.8 在IE8 下面报错: 对象不支持此属性或方法 调试发现是下面这一行报错: 在IE8下面报错,在chrome和firefox都是好的。 实在找不到原因,最后把源码改成下面这样: 没有报错了。 更好的方法,应该可以先 判断 elem 对象是否有 getAttribute() 这个函数 阅读全文
posted @ 2017-04-24 16:40 digdeep 阅读(811) 评论(0) 推荐(0)

2017年3月19日

摘要: 我们一般都是为了解决某个问题,才去看源码的。Java体系就是这点好处,源码唾手可得。遇到问题,最后的解决方法总是可以从源码中找到。 参考了网上的文章,过程整理如下: 1. 下载和导入 官网下载编译好的: apache-tomcat-8.5.12.zip 和 对应的源码包:apache-tomcat- 阅读全文
posted @ 2017-03-19 11:35 digdeep 阅读(1424) 评论(0) 推荐(0)

2017年2月22日

摘要: wsdl2java -h 可以得到详细的参考文档: 说一下其中比较重要的几个: -p 指定生产的代码的包路径,也就是生成的代码,我们将要放在哪个包下面; -d 指定生产的代码的位置,也就是生成的代码放在哪个磁盘哪个目录下面; 演示: G:\cxf\apache-cxf-3.1.6\bin>wsdl2 阅读全文
posted @ 2017-02-22 11:02 digdeep 阅读(3593) 评论(0) 推荐(0)

摘要: http://stackoverflow.com/questions/6066054/whats-wrong-with-my-apache-cxf-client You likely have a 1.5 (or older) version of wsdl4j coming from somepl 阅读全文
posted @ 2017-02-22 08:58 digdeep 阅读(2386) 评论(1) 推荐(1)

2017年2月20日

摘要: http://pwu-developer.blogspot.com/2010/01/nullpointerexception.html Maven is great build tool making it easy to fetch all the library dependencies for 阅读全文
posted @ 2017-02-20 13:45 digdeep 阅读(1302) 评论(0) 推荐(0)

2017年2月17日

摘要: CXF 的 wsdl2java.bat 生产的代码,拷贝到目录,进行调研 web service接口时,抛出错误: Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory. 阅读全文
posted @ 2017-02-17 09:22 digdeep 阅读(1390) 评论(0) 推荐(0)

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 37 下一页
不懂数据库和Web安全的架构师不是一个好的程序员。