base64前后台的加密与解密
摘要:前端 let filePath = base64.encode(path); 后台 public AjaxResult export(String filePath) { log.info("需要删除的文件:{}", filePath); byte[] decode = Base64.getDeco
阅读全文
posted @
2021-12-29 17:51
大山008
阅读(309)
推荐(0)
页面时时刷新数据
摘要:setInterval(getLatestData,6000); function getLatestData() { var url = ctx + "platform/activity/getLatestData"; $.ajax({ type: 'post', data: {'activity
阅读全文
posted @
2021-12-14 17:03
大山008
阅读(40)
推荐(0)
copyProperties 忽略null值字段
摘要:在做项目时遇到需要copy两个对象之间的属性值,但是有源对象有null值,在使用BeanUtils来copy时null值会覆盖目标对象的同名字段属性值,然后采用以下方法找到null值字段,然后忽略: public static String[] getNullPropertyNames (Objec
阅读全文
posted @
2021-12-12 20:03
大山008
阅读(641)
推荐(0)
mybatis设置select返回HashMap,字段值为null时,不会保存key
摘要:https://blog.csdn.net/weixin_34234721/article/details/94452730
阅读全文
posted @
2021-12-03 17:48
大山008
阅读(126)
推荐(0)
oracle11g客户端如何完全卸载
摘要:https://www.2cto.com/database/201501/369060.html 亲测可用
阅读全文
posted @
2021-12-03 17:47
大山008
阅读(39)
推荐(0)