上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: 1、标签含义 <w:tbl> 表格开始标志 <w:tblPr>表格属性 <w:tblW w:w=“0” w:type=“auto”/>这个type=还可以使用“pct”根据窗口调整 <w:jc w:val=“center”/>表格居中 <w:tblBorders>边框线 <w:top w:val=“ 阅读全文
posted @ 2021-08-13 14:53 唏嘘- 阅读(131) 评论(0) 推荐(0)
摘要: FTL指令常用标签及语法 注意:使用freemaker,要求所有标签必须闭合,否则会导致freemaker无法解析。 freemaker注释:<#-- 注释内容 -->格式部分,不会输出 基础语法 1、字符输出 ${emp.name?if_exists} // 变量存在,输出该变量,否则不输出 ${ 阅读全文
posted @ 2021-08-13 14:02 唏嘘- 阅读(717) 评论(0) 推荐(0)
摘要: 一:直接定义函数进行处理 public static String escapeStr(String str) { if (StringUtils.isEmpty(str)) { str = str.replaceAll("\\\\", "\\\\\\\\"); str = str.replaceA 阅读全文
posted @ 2021-08-13 11:52 唏嘘- 阅读(2143) 评论(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 唏嘘- 阅读(3385) 评论(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 唏嘘- 阅读(2385) 评论(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 唏嘘- 阅读(185) 评论(0) 推荐(0)
摘要: 1、报错信息 Unsatisfied dependency expressed through field 'xxxService'; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationExcep 阅读全文
posted @ 2021-08-05 18:07 唏嘘- 阅读(2997) 评论(0) 推荐(0)
摘要: 1、formatter使用 formatter这个属性属于列参数,意思就是对当前列的数据进行格式化操作, 有三个参数,value,row,index value:代表当前单元格中的值, row:代表当前行, index:代表当前行的下标 //示例 列表字段增加超链接 formatter: funct 阅读全文
posted @ 2021-08-05 17:26 唏嘘- 阅读(1777) 评论(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 唏嘘- 阅读(1020) 评论(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 唏嘘- 阅读(1603) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页