摘要: <tr> <th><input type="checkbox" id="checkAll" name="checkAll"></th></tr><tr> <td><input type="checkbox" name="checkItem" th:id="${ht.getGuid()}"></td> 阅读全文
posted @ 2020-11-11 10:17 不屑的洒脱 阅读(157) 评论(0) 推荐(0)
摘要: /** * 将表单数据封装成JSON字符串,配合RequestBody使用 * @param formId * @returns {string} */function getFormData(formId) { let formData = $("#" + formId).serialize(); 阅读全文
posted @ 2020-11-10 13:53 不屑的洒脱 阅读(288) 评论(0) 推荐(0)
摘要: import lombok.extern.slf4j.Slf4j;import org.aspectj.lang.JoinPoint;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.*;im 阅读全文
posted @ 2020-11-05 16:43 不屑的洒脱 阅读(299) 评论(0) 推荐(0)
摘要: html <table> 总记录数:<span th:text="${total}"></span><br /> 总页数:<span th:text="${pages}"></span><br /> <thead> <tr> <!--<th><input type="checkbox" id="ch 阅读全文
posted @ 2020-10-21 15:49 不屑的洒脱 阅读(1068) 评论(0) 推荐(0)
摘要: easypoi对应实体类数据类型并不是所有类型都支持 Excel 导入 数据源本地文件,不返回校验结果 导入 字 段类型 Integer,Long,Double,Date,String,BooleanJDK8以上出现的新类型,如LocalDate LocalDateTime貌似暂不支持 阅读全文
posted @ 2020-10-20 16:19 不屑的洒脱 阅读(513) 评论(0) 推荐(0)
摘要: <!DOCTYPE HTML><html lang="en" xmlns:th="http://www.thymeleaf.org"><head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset= 阅读全文
posted @ 2020-10-20 16:18 不屑的洒脱 阅读(1747) 评论(0) 推荐(0)
摘要: 问题记录 在最近的项目中发现,时不时遇到springboot热部署失效,但所有设置均正确,有时能用有时不能。 出现这种情况,我发现是因为我在IDEA中同时开了多个项目窗口,导致热部署失效,关闭其他窗口,只保留一个项目窗口,热部署就能会发 阅读全文
posted @ 2020-08-10 10:37 不屑的洒脱 阅读(469) 评论(0) 推荐(0)
摘要: 造成该现象极有可能,但又极不容易发现的错误是: 在表单中写了action="..." method="...",使用ajax提交表单,表单中无需再写,否则产生异常 阅读全文
posted @ 2020-03-30 22:46 不屑的洒脱 阅读(372) 评论(0) 推荐(0)