2020年8月10日

解决Ext4.2在IE8出现的"tagName"为空或不是对象问题

摘要: 解决ext 'tabName' 为空或不是对象问题 阅读全文

posted @ 2020-08-10 15:56 hi-gdl 阅读(273) 评论(0) 推荐(0) 编辑

2020年6月29日

使用网页打开本地exe

摘要: 方案一 : 通过IE浏览器自带的ActiveX控件打开 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 阅读全文

posted @ 2020-06-29 11:51 hi-gdl 阅读(442) 评论(0) 推荐(0) 编辑

2020年6月16日

C++ 简单的打印日志代码片段

摘要: C++ 简单的打印日志代码片段 int print_log1(const wchar_t* text) { if(0 == debug_log) { return 0; } std::string str = LPCTSTR2string(text); return print_log2(str); 阅读全文

posted @ 2020-06-16 19:56 hi-gdl 阅读(614) 评论(0) 推荐(0) 编辑

2020年6月15日

使用C++ 实现的 websocket 客户端 (基于easywsclient)

摘要: 直接上代码 easywsclient.hpp #ifndef EASYWSCLIENT_HPP_20120819_MIOFVASDTNUASZDQPLFD #define EASYWSCLIENT_HPP_20120819_MIOFVASDTNUASZDQPLFD // This code come 阅读全文

posted @ 2020-06-15 18:35 hi-gdl 阅读(3812) 评论(1) 推荐(0) 编辑

2020年6月3日

ant打包报错 JRE version less than 1.8 is not suppored

摘要: ant 打包错误如下 : 解决方案 : 使用 apache-ant-1.9.15 及之下版本的ant 编辑工作空间下文件 .metadata/.plugins/org.eclipse.debug.core/.launches/项目名 build.xml.launch , 添加红色部分代码 <?xml 阅读全文

posted @ 2020-06-03 11:27 hi-gdl 阅读(3717) 评论(0) 推荐(0) 编辑

2020年5月21日

离线安装SVN 4.2.3

摘要: 从下面网站下载对应安装包 : https://dl.bintray.com/subclipse/releases/ 下载eclipse对应版本的 javahl 和 subclipse 这里我使用的版本是 subclipse-4.2.3.zipsubclipse-javahl-1.9.6.zip 分别 阅读全文

posted @ 2020-05-21 11:54 hi-gdl 阅读(760) 评论(0) 推荐(0) 编辑

2020年5月7日

maven项目使用oracle11g

摘要: 找到oracle的jar包 执行maven命令 mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar -Dfile=E:\database\orac 阅读全文

posted @ 2020-05-07 15:14 hi-gdl 阅读(1597) 评论(0) 推荐(0) 编辑

2020年4月2日

springboot 新工程报错 Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

摘要: 错误日志 ... ... Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2020-04-02 12:52:47.306 阅读全文

posted @ 2020-04-02 12:59 hi-gdl 阅读(266) 评论(0) 推荐(0) 编辑

2020年3月19日

IP与域名绑定

摘要: 找到 C:\Windows\System32\drivers\etc 目录下的hosts文件 编辑hosts文件 添加下面最后两行代码(红色字体)将添加两个域名绑定 # Copyright (c) 1993-2009 Microsoft Corp. # # This is a sample HOST 阅读全文

posted @ 2020-03-19 11:34 hi-gdl 阅读(438) 评论(0) 推荐(0) 编辑

2020年3月16日

web项目如果省略端口

摘要: http端口默认 80 , 将端口改为80即可 阅读全文

posted @ 2020-03-16 16:02 hi-gdl 阅读(186) 评论(0) 推荐(0) 编辑

导航