摘要: pom.xml文件报错 { Failure to transfer org.springframework.boot:spring-boot-maven-plugin:pom:2.1.0.RELEASE from http://maven.aliyun.com/nexus/content/group 阅读全文
posted @ 2020-07-04 19:41 ```天真有邪 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-03 10:38 ```天真有邪 阅读(525) 评论(0) 推荐(0) 编辑
摘要: left join 左联表 where条件查询时 <if test="status != null and status != ''"> and status = #{status}</if> 没有声明是哪一个表,两表均有status字段 报错Column 'status' in where cla 阅读全文
posted @ 2020-06-10 15:31 ```天真有邪 阅读(1791) 评论(0) 推荐(0) 编辑
摘要: 引用的js文件有错 阅读全文
posted @ 2020-05-27 16:21 ```天真有邪 阅读(880) 评论(0) 推荐(0) 编辑
摘要: Date.prototype.format = function (fmt) { var o = { "M+": this.getMonth() + 1, "d+": this.getDate(), "h+": this.getHours(), "m+": this.getMinutes(), "s 阅读全文
posted @ 2020-05-26 10:39 ```天真有邪 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 需求是:foreach循环出每个element,if判断element是否符合需求,如果不符合直接停止不执行后面的代码 一开始直接用return 结果测试发现无效,后面的代码还是会一直执行 break也无效 解决 try{}catch{}捕获异常 如果if判断位false直接抛出异常,在catch里 阅读全文
posted @ 2020-05-26 10:14 ```天真有邪 阅读(125) 评论(0) 推荐(0) 编辑