自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(27)
  • 资源 (2)
  • 收藏
  • 关注

原创 快速了解JSR 352 Batch Processing / Spring Batch

[url=http://www.ibm.com/developerworks/cn/java/j-lo-springbatch1/]使用 Spring Batch 构建企业级批处理应用: 第 1 部分[/url][url=http://www.ibm.com/developerworks/cn/java/j-lo-springbatch2/]使用 Spring Batch 构建企业级批处理应用...

2014-09-29 18:17:10 484

原创 [node.js] 解决sublime console中乱码的问题

插件地址:https://github.com/tanepiper/SublimeText-Nodejs1. 通过Package Control : Install package 安装Nodejs插件2. 安装成功后,Tools->Build Systems下会增加一项Nodejs3. 选中Tools -> Build Systems -> Nodejs4. 创建...

2014-09-20 13:39:28 720

原创 'request' 之于 node.js 如 'httpclient' 之于 Java

1. 安装所需Module先[code="js"]npm install -g request[/code]2. 若请求无须经过代理服务器时[code="js"]var request = require('request'); request('http://www.baidu.com', function (error, response, body) {...

2014-09-19 18:41:58 124

原创 npm proxy setting

清理npm config delete http-proxynpm config delete https-proxy具体设置步骤如下:1. 执行[code="java"]npm config[/code]后, 将看到下一行提示信息[code="java"]npm config ls -l[/code] to show all defaults.2. 执行[cod...

2014-06-29 08:38:15 271

原创 Understanding RequireJS for Effective JavaScript Module Loading

原文见: [url=http://www.sitepoint.com/understanding-requirejs-for-effective-javascript-module-loading/]Understanding RequireJS for Effective JavaScript Module Loading[/url]一篇不错的介绍在rich client applica...

2014-05-15 12:58:07 126

原创 Express, Connect 与 Node.js之间的关系

正如Connect拓展了Node, Express拓展Connect. Connect爲我們提供了中間件,Express則爲我們提供了另外三個優秀的特性: 路由分發,請求處理,視圖渲染。http://xvfeng.me/posts/understanding-expressjs/...

2014-04-26 23:33:45 394

原创 [Node.js] 学习笔记 - express 3中的 app.use(app.router)

在学习一些express相关项目时,github project source中的example常常还是以express 3.X为基础来举例的, 而其中的app.use(app.router)有点没头没尾,让人有点困惑。Express 4Express 4.0 removes app.router. All middleware (app.use) and routes (...

2014-04-26 23:03:25 502

原创 Sublime Text 2 实用技巧越用越喜欢

曾一度觉得支持插件的功能强大nodepad++已经足够好了,但当被极力推荐试了试Sublime一段时间后,我也开始极力推荐其他朋友试试Sublime。 我确定你也会喜欢上她。nodepad++是中规中矩的强大,朴实但毫无新意。Sublime是绚丽的强大,不同凡响,够性感[b]跳转到指定行[/b]快捷键:CTRL + g或者 CTRL + p 后输入:[b]快速跳转到...

2014-04-26 22:29:51 78

原创 [Node.js] 学习笔记 - right design for your modules

http://fredkschott.com/post/2013/12/node-js-cookbook---designing-singletons/[size=large]Private vs. Public[/size]When creating a new module, your variables and functions are kept private by defa...

2014-04-26 12:28:58 81

原创 详解 Dojo Build

http://ivarconr.wordpress.com/2012/01/07/custom-build-in-dojo-1-7/这是我看过的最好的一篇详细介绍dojo build, 并有sample 可download的文章,比官方的垃圾文档好很多。 语言组织的更适合人类理解。 个人感觉dojo 未被广泛使用的非常重要一个就是官方文档太垃圾。...

2014-04-25 11:58:37 78

原创 [Node.js] 学习笔记 - express router

参考:http://stackoverflow.com/questions/12695591/node-js-express-js-how-does-app-router-workThe best option is to put all of your static resources under a specific folder. (IE /static) You can the...

2014-04-20 18:46:48 107

原创 Fix “The program can’t start because MSVCR100.dll is missing from your com

[u]Instead of installing MSVCR100.dll which you miss as other guys suggest, my solution is to find the required files from your computer, normally you may find out lots of such ddl files and then copy...

2014-04-17 22:49:36 348

原创 Selector performance

http://jsperf.com/jquery-selectors-speed-test/15

2013-09-04 00:04:33 83

原创 JavaScript DOM query

http://kangax.github.io/es5-compat-table/http://www.quirksmode.org/dom/w3c_core.htmlhttp://www.javascriptkit.com/dhtmltutors/css_selectors_api.shtmlhttps://developer.mozilla.org/en-US/docs/Web/A...

2013-08-24 22:53:25 293

原创 iText PDF template

useful materialshttp://svn.assembla.com/svn/jarbilling/billing/trunk/billing/vendor/pdfmanipulator/Fdf.javahttp://svn.assembla.com/svn/jarbilling/billing/trunk/billing/vendor/pdfmanipulator/test/B...

2012-07-26 19:57:46 182

原创 Class loaders

Class loadersClass loaders find and load class files. Class loaders enable applications that are deployed on servers to access repositories of available classes and resources. Application develope...

2012-06-15 14:20:16 85

原创 Spring Session Listener

org.springframework.security.core.session.SessionDestroyedEventorg.springframework.security.core.session.HttpSessionCreatedEventorg.springframework.security.web.session.HttpSessionEventPublisher...

2012-06-11 08:18:03 166

原创 jQuery中的&& ||

jQuery1.2.6 clean方法中有这么一段第一眼看去会让人晕掉的方法。完全不知其所言。“||, && 可以这样用?”,“这段东西最终返回的是个什么对象啊?” // Trim whitespace, otherwise indexOf won't work as expected var tags = jQuery.trim( elem ).toLowerCase()...

2011-06-19 20:54:37 791

原创 JavaScript 书籍推荐

JavaScript 不同阶段应阅读的书籍推荐。建议来从jQuery team 成员Rey Bango.jQuery team成员列表:http://jquery.org/team/内容摘自Rey Bango的BLOG:[url]http://blog.reybango.com/2010/12/15/what-to-read-to-get-up-to-speed-in-...

2011-06-19 17:28:42 103

原创 JavaScript keyword 'this' 你真的懂吗?

正题之前想问大家几个问题先。 1.写过JS代码,而没用过this关键字的童鞋们请举手. 2.已用过N加1次this关键字,但认为自己对this的理解不正确的请举手. 有人举手吗?有人举两次手吗? 有吗,真的有吗? 相信是没有滴,无论是生理上还是心理上。这种心态太正常了:-) 符合期望值。 但是呢...? 我们的目前对this的理解真是都是正确的吗? 我看未必,不信的...

2011-06-18 13:46:49 233

奇怪的iBatis 乱码问题,insert正常update乱码且与日期有关

domain: ResourceType,Resourcedao: ResourceTypeDao , ResourceDaopublic class Resource { private Long id; private String name; private String label; private ResourceType re...

2008-05-14 11:06:09 279

原创 C#命名规范

C#命名规范 大家都知道写程序应该有个好的命名规范,为了工作方便,贴出来。1 ADO.NET 命名规范 数据类型 数据类型简写 标准命名举例 Connection con

2008-04-19 11:50:00 303

转载 《Java Generics and Collections》读书笔记二:子类化与通配符

参考资料: 《Java Generics and Collections》1. 子类型与替换原则ListNumber> 是 CollectionNumber> 的子类型, 但 ListInteger> 却不是 ListNumber> 的子类型, 如下面代码:ListInteger> ints = Arrays.asList(1,2);ListNumber> nums = ints;

2008-01-09 23:12:00 753

原创 给自己看的招聘信息

  JAVA EE架构师 发布日期: 9天之前 工作地点: 杭州

2008-01-08 20:30:00 282

原创 走马观花Spring src

org.springframework.beans.support Classes supporting the org.springframework.beans package, such as utility classes for sorting and holding lists of beans.里面有分页、排序等相关工具

2008-01-08 09:44:00 274

转载 软件体系架构模式在J2EE中的应用

本文介绍了软件体系架构模式的层模式,分析了它的结构,特点,实现,以及优缺点等. 然后介绍遵循层模式的Architectural cube理论,结合J2EE的体系架构特点,剖析层模式是怎样应用的.最后以PetStore为例, 简单阐述怎样应用该模式在实际的J2EE系统之中. 层体系架构模式 层(layer)体系架构模式就是把应用系统分解成子任务组,其中每个子任务组处于一个特定的抽象层次上。

2008-01-08 08:59:00 867

转载 J2EE Clustering经典范文学习

2007-09-10 11:00:43 作者: 江南白衣 来源: csdn  标签:j2ee Cluster         构造Cluster是架构师们实现Scalability与High Availability 的 最直接用药。所以大家很多都会无意中使用Cluster的思想去设计自己的服务器。其实Java EE里的Clustering已经做得很熟很烂,

2008-01-07 19:32:00 400

jQuery in Action 及 源码 src

jQuery in Action src 源码

2008-12-05

软件设计文档标准

软件设计文档标准 参考

2008-05-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除