Martin Fowler曾经在一篇文章中曾经引用过Phil Karlton的话:
There are only two hard things in Computer Science: cache invalidation and naming things. ...
分类:
其他好文 时间:
2016-06-07 12:41:38
阅读次数:
129
本次实验环境采用CentOS7.1,第一步安装zabbix的软件源[root@martin~]#rpm-ivhhttp://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm安装zabbix相关软件[root@martin~]#yuminstallzabbix-server-mysqlzabbix-web-mysqlzabbix-agentmariadb-ser..
分类:
其他好文 时间:
2016-06-06 23:54:31
阅读次数:
595
Martin Fowler曾经在一篇文章中曾经引用过Phil Karlton的话:There are only two hard things in Computer Science: cache invalidation and naming things.他说这句话在很长的一段时间内都是他最喜欢... ...
分类:
其他好文 时间:
2016-06-06 18:28:59
阅读次数:
120
什么是POJO 按照Martin Fowler的解释是“Plain Old Java Object”,从字面上翻译为“纯洁老式的java对象”,但大家都使用“简单java对象”来称呼它。POJO的内在含义是指那些没有从任何类继承、也没有实现任何接口,更没有被其它框架侵入的java对象。 pojo和j ...
分类:
编程语言 时间:
2016-06-06 11:53:47
阅读次数:
253
定义(来自Martin Fowler的《企业应用架构模式》): Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects. 个人 ...
分类:
其他好文 时间:
2016-05-28 17:16:31
阅读次数:
229
理解POCO(Plain Old CLR Object)先要理解POJO。 1、什么是POJO? POJO的名称有多种,pure old java object 、plain ordinary java object 等。 按照Martin Fowler的解释是“Plain Old Java Obj ...
分类:
其他好文 时间:
2016-05-28 14:15:47
阅读次数:
929
Martin fowler几年前曾经非常推崇ORM(对象/关系数据库映射框架),特别是Hibernate和Ruby的Active Record,现在他面对大家越来越多对ORM责难和怀疑。他写了这篇新的文章:ORM的厌倦(OrmHate),下面大概谈谈他这篇文章大意。首 先,MF为ORM带来的复杂性做 ...
分类:
其他好文 时间:
2016-05-28 12:51:45
阅读次数:
169
原作者:http://www.uml.org.cn/oobject/201211231.asp 在UML 2.0的13种图形中,类图是使用频率最高的UML图之一。Martin Fowler在其著作《UML Distilled: A Brief Guide to the Standard Object ...
分类:
其他好文 时间:
2016-05-25 11:07:29
阅读次数:
352
Inversion of Control Containers and the Dependency Injection pattern In the Java community there's been a rush of lightweight containers that help to ...
分类:
其他好文 时间:
2016-05-24 01:43:17
阅读次数:
209
一、定义对象的基本格式:
var hero = {
breed: ‘Turtle’,
occupation: ’Ninja’,
talk: function(){
alert(“A!!”);
}
author: {
firstname: ‘Martin’,
lastname: ‘Lu’
}
}
属性名加不加引号都可以,但是当属性名有保留字或特殊字符(空格等...
分类:
编程语言 时间:
2016-05-18 18:33:23
阅读次数:
169