文章分类 -  工具类

日期
摘要:/** * 校验查询数据入后端时是否存在sql注入问题 * @param str * @return */ public static boolean sqlValidate(String str) { if(StringUtils.isBlank(str)){ return false; } st 阅读全文
posted @ 2023-02-10 10:05 扬帆起航$ 阅读(39) 评论(0) 推荐(0)
摘要:/** * */package com.teradata.springboot.util;import com.teradata.springboot.common.bean.R;import org.apache.commons.lang3.StringUtils;import org.joda. 阅读全文
posted @ 2023-02-10 09:46 扬帆起航$ 阅读(48) 评论(0) 推荐(0)
摘要:package com.teradata.springboot.util;import cn.hutool.core.date.DateField;import cn.hutool.core.date.DateTime;import cn.hutool.core.date.DateUtil;impo 阅读全文
posted @ 2023-02-07 11:27 扬帆起航$ 阅读(32) 评论(0) 推荐(0)