最近在做一个Oc4j的项目,迁移到Weblogic。 在某些页面会出现“getString not implemented for class oracle.jdbc.driver.T4CBlobAccessor” 调查结果是在framework的DBUtil中,在对Blob字段进行getString时出现...
Java
解决ant编译时的includeantruntime警告
不知道什么时候开始,用ant编译代码时总会提示一条“warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds” 一直以来也没注意(不重视warning...
解决JSP文件中的”Unchecked Cast”警告
当Java进行强行转换时,一般IDE会出现这个警告。 通常来说,我们都是“明确的”知道这个Object是什么,所以我们并不想看到这个这个警告(或许是因为强迫症?) 在Java中,给方法添加@SuppressWarnings("unchecked...
解决JDOM生成XML时半角空格被移除的问题
今天干活时发现的,老实说,我并不知道这个问题为什么产生。 因为我看到API是这样的: PRESERVE (Default) All content is printed in the format it was created, no whitespace or line separators are are ...
解决Tomcat的“is exceeding the 65535 bytes limit”错误
如果你是通过搜索来到本文的,相信你应该是遇到了如下的错误 The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit 这个错误是因为JSP文件太大了导致...