
Exception
文章平均质量分 52
手写白
JAVA程序猿一枚.
展开
-
jquery-1.x.x.min.js 在Myeclipse 报错
jquery在eclipse下报错eclipse导入jquery包后报错,处理步骤如下:1.打开项目.project文件,去掉如下内容: org.eclipse.wst.jsdt.core.javascriptValidator 2.删除原来的js,重启重新复制一份,因为原来的文件已被eclipse项目标记为错误了。转载 2014-02-13 15:09:44 · 1003 阅读 · 0 评论 -
Mybatis-There is no getter for property named 'id' in 'class java.lang.String'
在测试时报错:There is no getter for property named 'id' in 'class java.lang.String'问题分析:Mybatis默认采用ONGL解析参数,所以会自动采用对象树的形式取string.id值,引起报错。解决方法: public Note findNoteByID(@Param(value="id") String id);说明转载 2014-04-24 19:26:24 · 2368 阅读 · 0 评论 -
java.lang.ClassNotFoundException: org.apache.catalina.loader.DevLoader
参考:http://blog.youkuaiyun.com/eclipser1987/article/details/6371288开启Tomcat后报原创 2014-04-08 16:56:42 · 2168 阅读 · 0 评论 -
解决Failure executing javac, but could not parse the error
Failure executing javac, but could not parse the error: 此类问题出现的原因一般都是因为jdk或者jre路径配置原创 2014-07-14 18:46:34 · 25241 阅读 · 2 评论 -
com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException:Invalid byte 3 of 3-byte U
问题:com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 3 of 3-byte UTF-8 sequence网上的解决方案:原创 2014-11-06 12:14:37 · 5371 阅读 · 0 评论 -
【解决Tomcat启动异常】To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
The web application [/] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered原创 2014-12-30 20:39:22 · 21145 阅读 · 2 评论 -
base64加密放入URL引发的问题解决,java.net.MalformedURLException:Illegal character in URL
今天在做跟另一个系统的同步用户接口时,接口使用base64转换完之后的字符串加入到url中,总是报java.net.MalformedURLException:Illegalcharacter in URL.用转义字符转换了也不行。后来发现是引用的base64jar包的问题。应该引用“import com.sun.org.apache.xerces.internal.impl.转载 2015-04-28 18:22:14 · 6158 阅读 · 0 评论