在运行调试的时候经常遇到需要启动目录浏览的问题,尝试了修改目录权限发现还是不行,最后按照相关提示进行配置就搞定了: 第一种方法: 使用cmd进入到IIS Express的目录中,敲打命令:appcmd set config /sectio...
分类:
其他 时间:
2015-09-06 09:52:46
收藏:
0 评论:
0 赞:
0 阅读:
233
1,所有业务的测试机不同的node跑不同的业务(通过hosts查看) [root@localhost?rex]#?cat?/etc/hosts
127.0.0.1??mail.weike.com?mx?localhost?localhost.localdomain?localhost4?localhost4.localdom...
分类:
Web开发 时间:
2015-09-06 09:52:36
收藏:
0 评论:
0 赞:
0 阅读:
404
docker run$ sudo docker run [OPTIONS] IMAGE[:TAG] [COMMAND] [ARG...]docker run命令有两个参数,一个是镜像名,一个是要在镜像中运行的命令。
正确的命令:$ docker run learn/tutorial echo "hello word"
-d:containter将会运行在后台模式
–name:给container命...
分类:
其他 时间:
2015-09-06 09:51:44
收藏:
0 评论:
0 赞:
0 阅读:
218
?Find and Retain Passionate Problem SolversChad LaVignepuTTing TogETHER A TEAM of outstanding developers is one of the most important things you can do to ensure the success of a software project. Whil...
分类:
其他 时间:
2015-09-06 09:51:35
收藏:
0 评论:
0 赞:
0 阅读:
283
?Build Systems to Be ZuhandenKeith BraithwaiteWE Build ToolS. The systems that we make have no other reason to exist (nor we to get paid) than to help someone, usually someone else, do something.
Mart...
分类:
其他 时间:
2015-09-06 09:51:24
收藏:
0 评论:
0 赞:
0 阅读:
266
?Don’t Be a Problem SolverEben HewittWiTH SoME ExCEpTionS, ARCHiTECTS uSEd To BE dEvElopERS. Devel- opers get rewarded for solving programming problems, which are more local in scope than architectural...
分类:
其他 时间:
2015-09-06 09:51:14
收藏:
0 评论:
0 赞:
0 阅读:
314
Item 21: Don't try to return a reference when you must return an object
Item 20中提到,多数情况下传引用比传值更好。追求这一点是好的,但千万别返回空的引用或指针。 一个典型的场景如下:
class Rational{
int n, d;
public:
Raitonal(int numerator...
分类:
编程语言 时间:
2015-09-06 09:51:04
收藏:
0 评论:
0 赞:
0 阅读:
344
I/O全称是Input/Output,Java的I/O就是Java的输入与输出操作。与之相关的接口和类都放在java.io包里面,因而,在进行Java输入输出操作时,需要导入该包。利用Java的I/O大大地扩展了系统的输入与输出范畴,不仅可以从控制台输入输出,还可以从其他数据存储形式进行输入输出,例如本地文件、远程数据库等。Java的I/O在文件数据的...
分类:
编程语言 时间:
2015-09-06 09:50:54
收藏:
0 评论:
0 赞:
0 阅读:
364
div的显示和隐藏Insert title herediv-1给div追加内容Insert title here给img添加属性Insert title here简单的轮滑效果Insert title here 1 2 3 4获取div中的内容Insert title...
分类:
编程语言 时间:
2015-09-06 09:50:24
收藏:
0 评论:
0 赞:
0 阅读:
281
OAF版本比较原始,在Window7中无法应用配色方案,导致黑屏卡顿问题。(在启动OC4J后,Window7的配色方案还是会还原至原始状态) 修改$JDEV_HOME/jdev/bin/jdev.conf 找到下面内容,把最后一行前面的#号去掉: # Disable Direct Draw, on ...
分类:
Windows开发 时间:
2015-09-06 09:50:14
收藏:
0 评论:
0 赞:
0 阅读:
365
insert into 学生相片 values('2','2','2','2','2', (SELECT * FROM OPENROWSET (BULK 'F:\2.jpg', single_blob) AS a));update 学生相片 setPhoto =(SELECT * ...
分类:
数据库技术 时间:
2015-09-06 09:50:05
收藏:
0 评论:
0 赞:
0 阅读:
332
首先找到了这篇文章http://www.cnblogs.com/haokaibo/archive/2010/07/31/1789342.html然后找到一篇英文的文章http://monsur.xanga.com/2006/02/03/dll-refresh-and-asp-net/The ques...
分类:
Web开发 时间:
2015-09-06 09:49:54
收藏:
0 评论:
0 赞:
0 阅读:
273
[2015-09-06 09:07:32.879] ERROR [6B68DD09CE6FECFE20936CA3C6D560AD:http-bio-8087-exec-8] o.a.s.v.freemarker.FreemarkerResult - Error processing Freemar...
分类:
其他 时间:
2015-09-06 09:49:34
收藏:
0 评论:
0 赞:
0 阅读:
1592
摘要本文以MySQL数据库为研究对象,讨论与数据库索引相关的一些话题。特别需要说明的是,MySQL支持诸多存储引擎,而各种存储引擎对索引的支持也各不相同,因此MySQL数据库支持多种索引类型,如BTree索引,哈希索引,全文索引等等。为了避免混乱,本文将只关注于BTree索引,因为这是平常使用MyS...
分类:
数据库技术 时间:
2015-09-06 09:49:24
收藏:
0 评论:
0 赞:
0 阅读:
305
import java.util.*;/*求最大公约数和最小公倍数*/public class MaxCommonDivisorAndMinCommonMultiple { public static void main(String[] args) { Scanner scan...
分类:
其他 时间:
2015-09-06 09:49:14
收藏:
0 评论:
0 赞:
0 阅读:
285
高可用性、负载均衡的mysql集群解决方案一、mysql的市场占有率二、mysql为什么受到如此的欢迎三、mysql数据库系统的优缺点四、网络服务器的需求五、什么是mysql的集群六、什么是负载均衡七、mysql集群部署和实现方法八、负载均衡的配置和测试九、Mysql集群系统的测试(测试方案+测试脚...
分类:
数据库技术 时间:
2015-09-06 09:49:04
收藏:
0 评论:
0 赞:
0 阅读:
191
C/C++中常量修饰const可以用来保证一些确定的量不会被一不小心改变,比如PI,一直是3.14159......但是不排除有时候也会需要修改常量的值,通过直接修改是不能达到目的。比如:[cpp]view plaincopyprint?#includeintmain(intargc,constch...
分类:
编程语言 时间:
2015-09-06 09:48:54
收藏:
0 评论:
0 赞:
0 阅读:
242
1086. Tree Traversals Again (25)时间限制200 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueAn inorder binary tree traversal can be implemented in a non...
分类:
其他 时间:
2015-09-06 09:48:44
收藏:
0 评论:
0 赞:
0 阅读:
306
今天写这篇文章是想达到抛砖引玉的作用,想与大家交流一下思想,相互学习,博文中有不足之处还望大家批评指正。本篇文章的内容沿袭以往博客的风格,也是以干货为主,偶尔扯扯咸蛋(哈哈~不好好工作又开始发表博客啦~)。由于本人项目经验有限,关于架构设计方面的东西理解有限,我个人对MVVM的理解主要是借鉴于之前的...
分类:
移动平台 时间:
2015-09-06 09:48:24
收藏:
0 评论:
0 赞:
0 阅读:
361
Description:Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents...
分类:
其他 时间:
2015-09-06 09:48:14
收藏:
0 评论:
0 赞:
0 阅读:
234