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