需要一些字符串格式的帮助。
用户可以将文件中的简历粘贴到文本区域,文本可以是工作,pdf,文本和提交。简历可能有子弹或一些特殊字符。
应用程序使用 spring MVC ,我提交时会立即看到以下错误
DEBUG: org.springframework.beans.BeanUtils - No property editor [java.lang.IntegerEditor] found for type java.lang.Integer according to 'Editor' suffix convention
DEBUG: org.springframework.beans.BeanUtils - No property editor [java.lang.StringEditor] found for type java.lang.String according to 'Editor' suffix convention
DEBUG: org.springframework.web.servlet.DispatcherServlet - Successfully completed request
任何人都可以建议如何修复此问题或将其转换为纯文本。
由于
答案 0 :(得分:0)
它与丢失的罐子直接相关,按照下面的代码你缺少jar来包含它在你的类路径中。
catch (ClassNotFoundException ex) {
if (logger.isDebugEnabled()) {
logger.debug("No property editor [" + editorName + "] found for type " +
targetType.getName() + " according to 'Editor' suffix convention");
}
unknownEditorTypes.put(targetType, Boolean.TRUE);
return null;
}