Font: a C++ class This class is used in Fractal Generator. Avi Examples The header fileFont.h/* Font.h Copyright (C) 2002-2005 René Nyffenegger This.....
分类:
编程语言 时间:
2015-08-02 16:45:13
阅读次数:
144
接着上一篇,安装了nodejs之后,再安装express,顺序执行以下命令1.npm -g install express;2.npm -g express-generator;3.使用express -V查看是否安装成功;4.如果成功,直接使用epxress demo,创建一个文件夹,会自动创建e...
分类:
其他好文 时间:
2015-08-01 18:53:12
阅读次数:
88
代理了MaBatis Generator自动生成的Mapper的类
package com.aliapp.wxxd.material.service;
import interfaces.EntityWrapperInterface;
import java.util.List;
import org.springframework.beans.factory.annotation.Aut...
分类:
编程语言 时间:
2015-07-30 15:00:20
阅读次数:
156
本文从异步风格讲起,分析Javascript中异步变成的技巧、问题和解决方案。具体的,从回调造成的问题说起,并谈到了利用事件、Promise、Generator等技术来解决这些问题。异步之殇NON-BLOCKING无限好?异步,是没有线程模型的Javascript的救命稻草。说得高大上一些,就是运用...
分类:
编程语言 时间:
2015-07-30 10:48:52
阅读次数:
131
Koa框架实践与中间件原理剖析最近尝试用了一下Koa,并在此记录一下使用心得。 注意:本文是以读者已经了解Generator和Promise为前提在写的,因为单单Generator和Promise都能够写一篇博文来讲解介绍了,所以就不在这里赘述。网上资料很多,可以自行查阅。 Koa是Expres.....
分类:
其他好文 时间:
2015-07-29 00:40:24
阅读次数:
207
最近尝试用了一下Koa,并在此记录一下使用心得。 注意:本文是以读者已经了解Generator和Promise为前提在写的,因为单单Generator和Promise都能够写一篇博文来讲解介绍了,所以就不在这里赘述。网上资料很多,可以自行查阅。 Koa是Express原班人马打造的一个更小,...
分类:
其他好文 时间:
2015-07-28 17:47:02
阅读次数:
213
原文参考地址:http://blog.sina.com.cn/s/blog_7b8a637f010142if.html1) assigned 主键由外部程序负责生成,无需Hibernate参与。2) hilo 通过hi/lo 算法实现的主键生成机制,需要额外的数据库表保存主键生成历史状态。3) .....
分类:
Web程序 时间:
2015-07-25 00:09:33
阅读次数:
140
需要使用到的jar包下载地址:http://pan.baidu.com/s/1gdfHsHX
分类:
其他好文 时间:
2015-07-24 18:59:01
阅读次数:
110
1 // 发现资产主键2 @Id3 @GeneratedValue(generator="system-uuid")4 @GenericGenerator(name="system-uuid",strategy="uuid")5 private Long id;G...
分类:
编程语言 时间:
2015-07-24 17:48:44
阅读次数:
476
function * generator(k){ console.log('begin'); var x = yield k; console.log('x:',x); var y = yield x+k; console.log('y:',y); return x+y+k;...
分类:
其他好文 时间:
2015-07-24 06:49:07
阅读次数:
96