10 2022 档案
摘要:1.@NotNull(message = "有效期不能为空") <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId></dependency> 2.@JsonFormat(pa
阅读全文
摘要:一般是html的转义,xml也适用 但是在写sql时,xml文件中会出现。转义方法public static String htmlReplace(String str){ str = str.replace("“","“"); str = str.replace("”","&rdquo
阅读全文
摘要:时间差函数:TIMESTAMPDIFF MySQL 语法: TIMESTAMPDIFF (unit,begin,end) begin和end可以为DATE或DATETIME类型,并且可允许参数为混合类型。 unit参数是确定(end-begin)时间差的单位,单位值如下表 单位 MySQL(UNIT
阅读全文
摘要:downloadByBlob(url,name) { let image = new Image() image.setAttribute('crossOrigin', 'anonymous') image.src = url image.onload = () => { let canvas =
阅读全文
摘要:1.使用List.toArray将List<String>专为String[]; 2.再用StringUtils.join使用join(Object[] array, String separator)专为String 代码 :StringUtils.join(list.toArray(), ","
阅读全文