遇到的BUG集合

1、net.sf.json.JSONException: java.lang.reflect.InvocationTargetException

这个BUG通常发生在用户查询语句时,字段中有date字段.这个问题最简单的解决方式是将数据库中的date类型修改成datetime类型.

是否有其它的解决方式,待....

 

 

2、信息: Character decoding failed. Parameter [msg_content] with value [???é???????????è?????è?F%AD%E4%BF%A1%E4%B8%8B%E8%A1%8C%E6%B5%8B%E8%AF%] has been ignored. Note that the name and value quoted here may be corrupted due to the failed decoding. Use debug level logging to see the original, non-corrupted values.
 Note: further occurrences of Parameter errors will be logged at DEBUG level.

今天刚碰见的BUG,具体是出现在传参的时候,参数格式问题.后台在接受参数时无法识别。

具体编码有:escape、encodeURI、encodeURIComponent

有个别人的文档:http://bioubiou.iteye.com/blog/1507593

 

3、Maven编译时提示的:[ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:3.0.1:jar 

     解决:mvn clean install  -DskipTests  -Dmaven.javadoc.skip=true

4、Myeclipse 2017版本菜单显示多个Open TypeScript Symbol...

     解决:在菜单处输入customize,选中Menus选项,       回车,会弹出一个菜单管理宽,在Search中取消显示Open TypeScript Symbol选项,结束。

     此方法至少隐藏这个模块,网上查询很多说是需要更新Myeclipse到新版本就会解决这个BUG。

 

5、IE8下iframe重复打开,input输入框不可编辑

     解决://移除Ifram页面     

function remove(id){
    var iframe = $("#frame_"+id);
    if (iframe.length) {
      var frm = iframe.get(0);
      frm.src = 'about:blank';
      try {
        frm.contentWindow.document.write('');
      } catch (e) {
         console.log(e);
      }
      (CollectGarbage || $.noop)();
    }
    iframe.remove();
}


 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值