13k 12 分钟

# Project Scope Management “…includes the processes required to ensure that the project includes all the work required, and only the work required, to complete the project successfully. Managing the project scope is primarily concerned with defining and controlling what is and what is not included...
20k 19 分钟

# Notes # Collections of Basic Types @CollectionTable @ElementCollection (Goncalves Ex23) Useful for storing Set or List of basic types such as Strings or Integers @MapKeyColumn (Goncalves Ex24) Useful for storing Map of basic types such as <Integer,String> # Relationship...
27k 25 分钟

# Notes # Administrative Stufff 阅读材料 Goncalves Examples from Java EE 7 Extra Reading (you decide if you want/need) Antonio Goncalves, Beginning Java EE 7, Chapter 4 Antonio Goncalves, Beginning Java EE 7, Chapter 5 Galvin Library Books 24x7 # Thinking Ahead to your FP 期末项目思考 Think of a domain or...
24k 22 分钟

# Why ”communications” is important (p. 61 PMBOK 6th ed) “research shows that top project managers spend about 90% of their time on a project in communication” “研究表明,高级项目经理将大约 90%的时间用于沟通项目上” Information from the Harvard Business Review on an MIT Study With remarkable consistency, the data...
25k 23 分钟

# Notes # Servlet Let - suffix. Diminutive suffix. Smaller. 后缀。较小的后缀。小一点。 Little Server, Part of a Server, Server-like 小服务器,服务器的一部分,类似服务器 Servlets: Smaller - yes. Lesser - no! # HttpServlet Read explicit data sent by client (such as form data, request parameters) 读取客户端发送的显式数据(例如表单数据,请求参数) Read...
17k 16 分钟

# Integration Project Management 综合项目管理 Integration Project Management is… ”…the processes and activities to identify, define, combine, unify, and coordinate” various Project Management activities.” (p.69) 确定、定义、合并、统一和协调各种项目管理活动的流程和活动 Main ideas… Resource allocations 资源分配 Balancing competing...
26k 23 分钟

# Project 项目 Defined 定义: PMI’s Definition of Project (PMBOK 6th ed., p.715) “A temporary endeavor undertaken to create a unique product, service or result.” 为创造独特的产品、服务或结果,而付出的暂时努力。 PMBOK - Project Management Body Of Knowledge(美国的项目管理知识体系) # Why do we do projects 为什么要做项目 # Vision, Mission...
15k 14 分钟

Topic(s) Suggested Readings Abstraction, Inheritance, Polymorphism Chap. 10 Exceptions and Advanced File IO Chap. 11 Java Gui's – Swing / JavaFX Chap. 12-14 (plus supplements) Generics Chap. 17 Collections (maps, sets, lists) Chap. 18 Linked Lists Chaps. 19 Stacks, Queues Chap....
581 1 分钟

# Notes # TEST DRIVEN DEVELOPMENT (TDD) # What TDD is a tool for developers that aides in the development of high quality code. # Why Benefits for new code: TDD encourages more thorough analysis 进行更彻底的分析 TDD encourages better design 更好的设计 TDD encourages more modular code 使用更多模块化代码 TDD encourages...