09 2017 档案

摘要:今天在启动服务器的时候 发生错误 Open quote is expected for attribute "type" associated with an element type "resultMap" 造成的原因是 mybatis.xml中的 type 少了引号 正常的启动,加载到自己新加入 阅读全文
posted @ 2017-09-19 16:11 牧の风 阅读(199) 评论(0) 推荐(0)
摘要:当用springMVC上传下载文件,配置上传下载文件的大小的时候会造成 java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItemFactory fileupload 路径下的这个类找不到,使用其他项目管理工具的自己下 阅读全文
posted @ 2017-09-14 09:33 牧の风 阅读(8936) 评论(0) 推荐(0)
摘要:public final int getAndIncrement() { for (;;) { int current = get(); int next = current + 1; if (compareAndSet(current, next)) return current; } } 这个方 阅读全文
posted @ 2017-09-01 09:50 牧の风 阅读(166) 评论(0) 推荐(0)