斗爷

导航

2012年11月14日 #

effective_java_2nd_endition文摘

摘要: CHAPTER 2 Creating and Destroying ObjectsItem1: Consider static factory methods instread of constructors1.static factory methods hava names2.they are not required to create a new object each time they're invoked3.they can return an object of any subtype of their return type 阅读全文

posted @ 2012-11-14 13:38 斗哥哥 阅读(153) 评论(0) 推荐(0) 编辑

java EE设计模式--spring企业级开发最佳实践文摘

摘要: 第一章 企业级java应用程序架构和设计应用程序的分层:表现层 业务层 数据访问层单层架构:一台主机两层架构:胖客户端 + 主机服务器三层架构:瘦客户端(浏览器)+ 应用程序服务器 + 数据库服务器多层架构:瘦客户端(浏览器)+ web服务器 + 应用程序服务器 + 数据库服务器java ee 架构:第二章 使用Spring框架简化企业级java应用程序第三章 表现层设计模式Front Controller(前端控制器):为表现层资源提供单一的访问点Application Controller(应用程序控制器)Page Controller(页面控制器)第四章 业务层设计模式第五章 集成层设. 阅读全文

posted @ 2012-11-14 09:30 斗哥哥 阅读(234) 评论(0) 推荐(0) 编辑