上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: 一:直接定义函数进行处理 public static String escapeStr(String str) { if (StringUtils.isEmpty(str)) { str = str.replaceAll("\\\\", "\\\\\\\\"); str = str.replaceA 阅读全文
posted @ 2021-08-13 11:52 唏嘘- 阅读(1931) 评论(0) 推荐(0) 编辑
摘要: 1、问题 org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [xxx] to the cache for web application [/xxx] because there was 阅读全文
posted @ 2021-08-09 14:56 唏嘘- 阅读(3082) 评论(0) 推荐(0) 编辑
摘要: 1、查找工作空间的路径 select * from dba_data_files; 2、删除用户,及级联关系也删除掉 drop user 用户名 cascade; 3、删除表空间,及对应的表空间文件也删除掉 drop tablespace 表空间名including contents and dat 阅读全文
posted @ 2021-08-06 14:06 唏嘘- 阅读(1690) 评论(0) 推荐(0) 编辑
摘要: 1、删除用户 drop user user_name cascade; 如果提示 ORA-01940提示 “无法删除当前已连接用户” (1)锁定用户 alter user XXX account lock; (2)查询当前进程号(注意用户名一定要大写) SELECT * FROM V$SESSION 阅读全文
posted @ 2021-08-06 09:17 唏嘘- 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1、报错信息 Unsatisfied dependency expressed through field 'xxxService'; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationExcep 阅读全文
posted @ 2021-08-05 18:07 唏嘘- 阅读(2832) 评论(0) 推荐(0) 编辑
摘要: 1、formatter使用 formatter这个属性属于列参数,意思就是对当前列的数据进行格式化操作, 有三个参数,value,row,index value:代表当前单元格中的值, row:代表当前行, index:代表当前行的下标 //示例 列表字段增加超链接 formatter: funct 阅读全文
posted @ 2021-08-05 17:26 唏嘘- 阅读(1673) 评论(0) 推荐(0) 编辑
摘要: 1、js layer.confirm("确定删除吗",{ btn: ['确定', '取消'], success: function (layero, index) { this.enterEsc = function (event) { if (event.keyCode == 13 ) { //确 阅读全文
posted @ 2021-08-05 17:06 唏嘘- 阅读(955) 评论(0) 推荐(0) 编辑
摘要: 1、报错信息 org.apache.ibatis.binding.BindingException: Mapper method 'xxxMapper.XXX attempted to return null from a method with a primitive return type (i 阅读全文
posted @ 2021-08-05 16:19 唏嘘- 阅读(1399) 评论(0) 推荐(0) 编辑
摘要: 1、引用 form layui.use(['form'], function () { var form = layui.form; $('select').attr('disabled', 'disabled'); //或者 $('select').attr('disabled', true); 阅读全文
posted @ 2021-08-05 16:15 唏嘘- 阅读(1356) 评论(0) 推荐(0) 编辑
摘要: 1、问题原因: 在properties 配置文件路径, 直接粘贴复制的文件磁盘路径 properties中不能含有\符号, 否则就会报上面的错误. 2、解决方式: 将properties中的\改为 \\ 或者 / 阅读全文
posted @ 2021-08-05 15:52 唏嘘- 阅读(396) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页