- 博客(92)
- 资源 (2)
- 收藏
- 关注
原创 ImageMagick java运行安装说明
1.安装 ImageMagick-6.3.9-0-Q16-windows-dll ,不需要更改设置。直接下一步。2.拷贝 jmagick-win-6.3.9-Q16.rar里面的dll文件到 系统目录; c:\windows\system32\3. 拷贝 jmagick.jar 到 tomcat\lib\下。
2021-03-11 01:19:31
266
原创 bootstrap-table 一直显示“正在努力地加载数据中,请稍候”的问题
bootstrap-table一直显示“正在努力地加载数据中,请稍候”的问题bootstrap-table问题答案参考bootstrap-tablebootstrap-table正常在加载数据过程中会在table上方显示“正在努力地加载数据中,请稍候”的字样,但是加载完之后这个字样会消失。问题最近遇到的问题,表格数据都加载玩了,但是上方仍然显示“正在努力地加载数据中,请稍候”,这就尴尬了。问题找了一圈。有人说调用hideLoading$("#table").bootstrapTable("h
2021-01-26 08:27:25
9093
6
原创 PDF MERGE JAVA
PDF MERGEpackage cn.com.tdl.base.pdf;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.util.ArrayList;import java.util.Iterator;import java.util.List;import com.lowagi
2021-01-16 12:09:44
258
原创 ImportError: DLL load failed: 找不到指定的模块
ImportError: DLL load failed: 找不到指定的模块标题ImportError: DLL load failed: 找不到指定的模块问:导入失败在Windows上:ImportError: DLL load failed: The specified module could not be found.?答:如果在Windows上导入失败,请确保已安装Visual C ++可再发行的2015。如果您使用的Windows版本早于Windows 10,并且未安装最新的系统更新,
2020-09-22 21:57:19
249
转载 liferay project 由ant build 到maven build
liferay project 由ant build 到maven buildliferay project 由ant build 到maven build参考liferay project 由ant build 到maven buildIt’s actually quite easy. The only hang up is that you lose any history you’ve accumulated in your revision control system.Basic proce
2020-08-10 11:21:52
153
原创 liferay hook filter 里面的session传到 porlet中
liferay hook filter 里面的session传到 porlet中In HookHttpServletRequest request = (HttpServletRequest) servletRequest;request.setAttribute(“LIFERAY_SHARED_resetFlag”,resetFlag );In Portletboolean sessionId = (Boolean) PortalUtil.getHttpServletRequest(port
2020-06-13 23:48:44
187
原创 best ide for liferay 6.2
For my 6.2 based clients, and in the past, I've done a lot of work in this environment, over time. 3.0.1 is the highest version IDE that still works with LR 6.2. You can not go to the 3.1.x versions of the IDE with 6.2, not supported. Now with that being s
2020-06-13 07:38:51
151
原创 通过journal article id获取 assetEntry信息
通过 journal article id获取assetEntry的信息JournalArticle journalArticle = JournalArticleLocalServiceUtil.getArticle(Long.parseLong(articleId));long resourcePrimKey = journalArtcle.getResourcePrimKey();As...
2019-10-25 20:26:55
292
原创 用JODConverter和openoffice生成PDF文档时候的PAGESIZE设置问题
用JODConverter和openoffice生成PDF文档时候的PAGESIZE设置问题(二)纸张设置参数纸张设置参数上篇文章[1]: https://blog.youkuaiyun.com/liuhualiang/article/details/14094019#commentsedit提到的关于纸张设置参数,可以参考[2]: https://www.openoffice.org/api/do...
2019-09-15 20:06:13
1175
原创 delphi官方iso下载地址
delphi官方iso下载地址Delphi 7.0.1 Enterprise Editionhttp://altd.embarcadero.com/download/delphi/d7/english/ent/delphi_7_ent_en.isohttp://altd.embarcadero.com/devsupport/delphi/d7/update1r2/Delphi_71_Ent_...
2019-08-22 13:26:26
1712
转载 liferay changelog
liferay changelogliferay changelogliferay changelog============ CHANGELOG =============Version 7.2.0-0 2019-06-19Updated lego to 2.6.0Updated Liferay to 7.2.0Updated MySQL to 8.0.16Update...
2019-06-25 16:33:16
212
原创 mysql 5.7 修改密码
mysql 5.7 修改密码mysql 5.7 修改密码sqlmysql 5.7 修改密码mysql 5.7的user表的密码字段由password换成了authentication_string,修改密码的sql变化。sqlupdate mysql.user set authentication_string=PASSWORD('root') where user='root';FLUS...
2019-06-14 13:05:00
179
原创 liferay maven项目
pom文件用maven的archetype创建liferay项目的时候,pom文件里面的properties文件会缺少一些,下面是需要补充上的properties内容, <liferay.home>C:\portal\liferay6.2\liferay-portal-6.2-ce-ga6</liferay.home><liferay.auto.deploy...
2019-06-06 01:34:40
385
原创 为Maven项目创建本地Archetype配置
为Maven项目创建本地Archetype配置创建本地Archetype下载archetype-catalog.xmleclipse设置参考创建本地Archetype每次通过archetype创建项目时,从网络获取Archetype很耗时,有时会卡住一直检索不出需要的archetype,其实是因为archetype 的xml太大检索慢,把该索引文件放本地会大大加快检索速度。下载archety...
2019-06-06 01:07:38
853
原创 使用maven archetype 快速开始新项目搭建
使用maven archetype 快速开始新项目搭建没有maven的时候开始新项目一般拷贝老项目,并修改很多地方,这种方式有下面诸多问题:项目名称需要修改package名称需修改web.xml里面的项目名称.project文件里面的项目名称还需要删除一些新项目不需要的东西如果没有模板工程每个人每次创建的项目依赖的基础不一致,还需要进行对比。使用maven arche...
2018-02-10 23:10:34
446
原创 eclipse空间打不开的问题
eclipse neon.1 workspace打不开的问题经常由于eclipse异常关闭导致之前正在使用的workspace无法正常打开,出现下面的提示: 可以通过搜索workpsace查找*.snap 将找到的 数字.snap删除后,就能正常启动了。
2017-07-28 03:11:33
501
原创 MyEclipse 10 安装subclipse svn1.9.x
MyEclipse 10 安装subclipse svn1.9.xmyeclipse的在线安装插件非常慢,一般离线安装包进行安装。 最新版的subclipse移到github了。 对于比较老的eclipes版本(4.2以下),又想安装对最新版svn的支持, subclipse下载地址
2017-03-04 09:45:57
2590
原创 Tomcat和apache整合(1)
让apache自动处理tomcat的webapps下面的应用。测试环境Tomcat 6.0.29apache_2.2.4-win32-x86tomcat-connectors-1.2.40-windows-i386-httpd-2.2.x修改方法修改apache的conf/httpd.conf 文件 在文件最后追加下面的配置 # Static files in all Tomca
2015-12-20 21:43:22
462
原创 WIN2003下休眠后无线连接无法连接
WIN2003下休眠后无线连接无法连接环境:win2003 sp2T420symantec endpoint protect解决方法卸载Symantec endpoint protect
2015-11-17 22:16:53
684
翻译 dinamica v3.4.5 (dynamic v3.4.5) changelog
05/04/2015 v3.4.5* Improved dinamica.AbstractPDFOutput to use the CI pdf-file-name in config.xml or by default if the configuration report.pdf name does not exist.* Using dinamica.encoding syste
2015-05-08 20:46:26
824
翻译 dinamica changelog 3.4.3 (2014上半年) 3.4.1-3.4.3
07/22/2014 v3.4.3* Adjustments to allow dinamica.SysInfo show the name of the Linux distribution assuming that it supports / etc / issue, see for example this allows "Ubuntu 14.04 LTS" also info
2014-07-31 07:35:12
583
翻译 dinamica changelog 3.4.0-3.4.2
2014-06-13 v3.4.2* Optimizing dinamica.StringUtil.getResource () function used by all hyper relevant Framework classes.* Improvements to streamline dinamica.SysInfo reading performance metrics,
2014-06-22 03:12:45
728
原创 xampp 1.7.3 apache无法启动的问题
为了测试程序,安装了xampp。之前用过1.7.0 ,mysqladmin.exe老是出错误。更换到1.7.3了。1.7.3下mysql没啥问题。apache出问题了,启动不了。apache默认端口80,将80端口空出来也还是启动不了apache服务。看logs/ 发现了下面的内容。[Mon Jan 13 19:40:25 2014] [notice] Digest: ge
2014-01-13 20:03:21
1204
转载 用barcode组件barbecue时产生的黑色横线的问题
用barbecure 生成带标签的barcode时候,标签下面会带个黑色横线。在sourceforge的barbecue的讨论区有人贴了个方法,能解决该问题。http://sourceforge.net/p/barbecue/discussion/266281/thread/bb3d5344# bowa 2008-01-28
2013-12-05 19:38:03
1335
原创 用JODConverter和openoffice生成PDF文档时候的PAGESIZE设置问题
用JODConverter和office生成PDF文档时候的PAGESIZE设置问题
2013-11-03 01:35:43
7430
6
翻译 dinamica changelog 2013/10/1
1/10/2013 v3.3.8 * Improved: the custom validator now supports the attribute dinamica.DuplicatedKeyValidator datasource = "jdbc / xxxx" to indicate if you want to use another DB connection different
2013-10-05 22:06:41
690
翻译 dinamica changelog 2013/06/18
18/06/2013 v3.3.4* Fix a bug in dinamica.Controller affecting the commit of a transaction if a Transactioninvokes the method itself getDb (). BeginTrans () (ImportExcel template case), althoug
2013-08-16 11:12:53
850
原创 eclipse subclipse unable load default svn client的解决办法
eclipse的 subclipse插件遇到了 unable load default svn client的解决办法。重复查看了下插件的安装情况。除了optional之外的插件,JAVAHL没有安装。安装后,问题解决了。
2013-03-11 14:35:40
2534
转载 控制版面里的添加删除程序打不开,提示rundll32.exe应用程序错误
转载自 baidu博客http://hi.baidu.com/cty901/blog/item/e1ab4c7fa1a0161729388a48.html解决方法:点开始开始-运行-regedit(打开注册表编辑器)找到HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Wdf0100
2012-05-10 17:48:46
1011
原创 SqlDbx 增加了对PostgreSQL的支持
一直在用3.49版本的SqlDbx今天确认的时候发现SqlDbx 已经更新到3.51并且增加了对PostgreSQL的支持
2011-09-26 23:38:08
2630
1
转载 ADODB.Connection (0x800A0E7A)未找到提供程序。该程序可能未正确安装。
delphi adoconnection 未找到提供程序。该程序可能未正确安装。
2011-04-22 23:47:00
3871
原创 Beatmod feat.Yoshi Honeycomb what's is the the new RamHacked SPL/Radio
Beatmod feat.Yoshi Honeycomb spl/radio what's is the the new RamHacked SPL/Radio
2011-03-06 16:32:00
777
原创 修改MSSQL逻辑文件名
从MSSQL 2k的一个备份文件还原的数据库,可以通过还原操作在图像界面修改物理文件名。但是逻辑文件名还始终是原先的。 虽然没有影响,但是看起来闹腾。 可以通过下面的命令修改: 在 Enterprise Manager 中没有修改数据库逻辑文件名的办法,我们可以通过T-SQL实现,假定数据库名称为erp5,原来的逻辑文件名是erp5data_data、
2011-03-01 10:14:00
948
翻译 Dinamica 20110207 update
<br />07/02/2011: Updated the template webapp.zip with correction in getFormValues function (). Updated templates HGRID BLOB and improvements in viewing an image, now drag / drop and more stylish dhtml popup, all cross browser. Only Dynamic Deluxe. <br /><
2011-02-18 10:15:00
546
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人