- 博客(22)
- 资源 (6)
- 收藏
- 关注
原创 解决升级openssl到3.0以后,vue项目报错Error: error:0308010C:digital envelope routines::unsupported
解决升级openssl到3.0以后,vue项目报错Error: error:0308010C:digital envelope routines::unsupported
2022-11-17 10:35:17
2138
原创 迁移达梦数据库适配LocalDateTime
达梦数据库兼容LocalDateTime问题解决办法导入问题如果使用的是mybatis作为orm框架,那么当从mysql数据库切换到达梦数据库时,使用了LocalDateTime会报错。这是因为mybatis在转换LocalDateTime的时候发生了异常解决办法/** * 日期时间处理,适配达梦数据库 */@MappedTypes(LocalDateTime.class)@MappedJdbcTypes(JdbcType.TIMESTAMP)public class LocalDateT
2021-07-16 21:34:06
4109
3
原创 高效的将List转换成Tree
// 将数据存储为 以 id 为 KEY 的 map 索引数据列 Map<String, AntdTreeNode> map = new HashMap<>(16); mapList.forEach(m -> map.put(m.get(idField).toString(), convertToAntdTreeNodeFromMap(m, parentIdField, textField, ke...
2021-01-08 19:06:21
1031
3
原创 tinymce预览插件全屏
先来个效果图:上源码:/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.clo
2020-11-24 15:02:27
3613
2
原创 tinymce实现粘贴图片自动上传(自动上传粘贴的Base64)
tinymce实现粘贴图片自动上传默认粘贴图片后(如屏幕截图,然后ctlr+v),会转换成base64编码,导致文章内容很大。通过添加如下回调,粘贴后自动上传.注意:本配置在tinymce5.2.0图片已经上传服务器,但是不会及时回显,需要在编辑器中再输入一个字符,src的url才会变动。在tinymce5.6.0下会实时变动。tinymce.init({ selector: 'div#editable', // 解决粘贴图片后,不自动上传,而是使用base64编码。 urlconvert
2020-11-20 10:01:07
7360
20
原创 CentOs7安装pyspider
CentOs7安装pyspider参考资料CentOs7下安装pyspider参考资料pyspider官网CentOs7下安装pyspider# 1. 安装前需要检查curl版本,用最新版7.64.1,否则可能安装失败(参考curl的安装)。curl -V # 安装了curl后要覆盖以下文件,否则报错:ImportError: pycurl: libcurl link-time ve...
2019-04-21 09:29:17
788
转载 Spring3 MVC详解一
转载自http://blog.youkuaiyun.com/liumm0000/article/details/7565480 Spring IOC 常用注解
2016-12-09 15:35:29
403
原创 对ligerUI的ligerForm方法生成的表单字段禁用或启用
//用ligeruiidliger.get('detailFormOfOverhaul_'+tempFields[i].name).setDisabled();
2014-06-27 21:23:55
6873
原创 ligerUI bug
version 1.2.4920 行左右if ($.inArray(type, ["select", "combobox", "autocomplete", "popup"]) != -1){// txtInputName = field.textField || field.comboboxName; /*bug1:ycj 解决ligerForm()方法模拟生成的select标签的n
2014-06-26 07:44:13
1691
原创 ligerUI通用导出Excel代码
//模块化/*使用方法,1.根据需要,更改导出Excel和下载excel的Url地址,2. 导如以下js代码, 3.调用gridExportModule.exportSelectRows('gridDomId', '导出表格的名称', ['fileterHeader1', 'fileterHeader2'])第3个参数可以不传,主要用来过滤不想显示导出的字段*/gridExpo
2014-06-25 17:52:21
7646
原创 ligerUI生成popup/select 下拉表格,且点击时可以实时更新数据
{ display: '年龄', name: 'Age', width: 50, type: 'int', editor: { type: 'int' } }, { display: '部门', name: 'DepartmentID', width: 400, isSort: false,textField: 'Depart
2014-06-25 17:27:38
5389
原创 ligerUI bug 一些解决办法
version 1.2.4920 行左右if ($.inArray(type, ["select", "combobox", "autocomplete", "popup"]) != -1){// txtInputName = field.textField || field.comboboxName; /*bug1:by imyc 解决ligerForm()方法模拟生成的select
2014-06-24 19:44:36
7583
原创 linux root权限
linux root 权限用户安装后Linux系统后,登陆时选择other, 用户名: root 密码:创建的第一个用户的密码,进入系统后即为root权限修改中文操作语言:root/etc/sysconfig/i18n 修改成 zh_CN UTF-8
2014-06-24 19:30:11
715
转载 eclipse中文包安装以及中英文界面切换方法
eclipse中文包安装以及中英文界面切换方法(2013-01-20 21:47:22)一、eclipse4.2中文包的下载与安装: 1、eclipse多国语言包的下载地址: http://download.eclipse.org/technology/babel/babel_language_packs/R0.10.0/juno/juno.php
2014-06-24 19:26:22
1224
转载 Oracle表空间的创建
创建表空间,管理员pmis(pmis)并授权。CREATE TABLESPACE pmis DATAFILE 'pmis.dbf' SIZE 100M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED;CREATE USER pmis IDENTIFIED BY pmis DEFAULT TABLESPACE pmis;GRANT CONNECT , R
2014-06-24 19:25:02
493
转载 Oracle递归查询
首页 » Activiti Workflow HelloWorld示例与测试环境搭建作者 Rock 发表于 星期三, 03/21/2012 - 12:55我 们都知道Alfresco 4.0以后采用了Activiti BPMN2.0 引擎(关于Activiti, 是一个open source 项目。 Alfresco从jBPM公司挖出了jBPM的创建
2014-06-24 19:23:57
440
转载 扩展jQuery方法,获取URL请求参数
/** *扩展jQuery方法,获取URL请求参数 *Get object of URL parameters var allVars = $.getUrlVars(); *Getting URL var by its name var byName = $.getUrlVar('name'); */ $.extend({ getUrlVars: functio
2014-06-24 19:18:36
2160
原创 mybatis异常:org.apache.ibatis.binding.BindingException: Parameter 'param' not found. Available param
org.apache.ibatis.binding.BindingException: Parameter 'param' not found. Available parameters are [param1, form]
2014-06-24 19:14:32
85599
原创 解决ligerui不校验select表单,以及ie678下不校验所有表单问题
http://blog.sina.com.cn/s/blog_a010f9a10101ie1z.html?tj=1
2014-04-01 20:10:43
1365
原创 ligerui实现鼠标滑过行,显示单元格内容
实现鼠标滑过行时,显示操作表格中的内容,移出时隐藏。{display : '操作',name : 'operate_list_grid',width:'200', render:function(rowdata, rowindex, value){ var tempSet =''; tempSet+=''; tempSet+='下载'
2014-04-01 20:08:13
5018
idea2020.2 lombok插件问题修复 lombok-plugin-0.30-patch-2020.2.jar
2020-08-13
scrt-sfx-8.5.4.zip deepin20 SecureCRT8.5
2020-08-13
SQLyog-v.13.1.1.x64
2019-03-14
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人