摘要: Ocelot是一个基于netcoreapp2.0构建,.NET Core框架下的开源Api网关项目,用于开发基于.NET微服务架构或面向服务架构系统的统一入口。 阅读全文
posted @ 2018-12-12 13:57 liujunhua 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 环境说明:本机IP:192.168.2.100;Web端口:11843步骤一打开[我的文档]\IISExpress\config\applicationhost.config,找到下面的代码块 步骤二方法一、在 把改成自己的IP地址方法二、也可以增加步骤三、如果还是... 阅读全文
posted @ 2015-03-05 15:20 liujunhua 阅读(1991) 评论(0) 推荐(0) 编辑
摘要: 原因分析:android要求所有的程序必须有签名,否则就不会安装该程序。在我们开发过程中,adt使用debug keystore,在 preference->android->buid中设置。debug的keystore默认有效期为一年,如果你是从一年前开始完android程序,那么在一年后导入这个app的时候很可能出现debug keystore过期,导致你无法生成 apk文件。此时你只要删除debug keystore就行,系统又会为你生成有效期为一年的私钥。 解决方法:进入C:\Documents and Settings\Administrator\.android 删除路 阅读全文
posted @ 2011-09-29 09:47 liujunhua 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1 //begindate和enddate是yyyy-mm-dd格式 例2010-01-26 function DateDiff(begindate, enddate) { var tempdate, obegindate, oenddate, days;tempdate = begindate.split("-"); //转换为mm-dd-yyyyobegindate = new Date(tempdate[1] + '-' + tempdate[2] + '-' + tempdate[0]);tempdate = enddate.split("-");oenddate = new Date 阅读全文
posted @ 2010-12-21 17:03 liujunhua 阅读(397) 评论(0) 推荐(0) 编辑
摘要: PL/SQL记录 阅读全文
posted @ 2010-12-20 13:10 liujunhua 阅读(114) 评论(0) 推荐(0) 编辑
摘要: function GetCurrentDirectory(){var curHref = location.href;var curArray = locHref.split("/");delete curArray[curArray.length - 1]; var curdir = curArray.join("/");return curdir;} 阅读全文
posted @ 2010-12-14 16:57 liujunhua 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1. 打开“Visual Studio 2010 命令提示”窗口。“开始”按钮-“程序”-“Microsoft Visual Studio 2010”-“Visual Studio 工具”-“Visual Studio 2010 命令提示”。2. 在命令提示符下,键入notepad helloworld.cpp,并按 Enter。在系统提示是否创建新文件时,单击“是”。在记事本中,键入下列各行:#include iostreamusing namespace std;int main(){ cout "Hello,C++ World!" endl; return 0;} 阅读全文
posted @ 2010-12-14 16:06 liujunhua 阅读(4221) 评论(2) 推荐(0) 编辑
摘要: 1、JDK下载安装 1.1、下载       下载地址:http://www.oracle.com/technetwork/indexes/downloads/index.html 。 1.2、安装       JDK安装程序是一个exe可执行程序,直接安装即可,在安装过程中可以选择安装路径... 阅读全文
posted @ 2010-11-24 17:27 liujunhua 阅读(263) 评论(0) 推荐(0) 编辑