mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
120 lines
7.6 KiB
Markdown
120 lines
7.6 KiB
Markdown
---
|
|
title: "review-i201"
|
|
aliases:
|
|
tags:
|
|
|
|
---
|
|
|
|
# soft. dev. methods
|
|
- [SDLC](notes/systems-development-life-cycle.md)
|
|
- [1 traditional](notes/approaches-to-systems-development.md#1%20traditional) (predictive) vs [1 object oriented](notes/approaches-to-systems-development.md#1%20object%20oriented) (flexible)
|
|
- [UP](notes/unified-processes.md) (OO)
|
|
- [scrum](notes/scrum.md)
|
|
- [xp](notes/extreme-programming.md)
|
|
|
|
# requirements engineering
|
|
- [business-process](notes/business-process.md) re engineering
|
|
- [requirements](notes/requirements.md)
|
|
- properties of good ones [requirements-guidelines](notes/requirements-guidelines.md)
|
|
- functional vs not [furps](notes/furps.md)
|
|
- importance (moscow)
|
|
- elicitation [requirements-elicitation](notes/requirements-elicitation.md)
|
|
- stakeholders techniques [stakeholders](notes/stakeholders.md) [Stakeholders](notes/requirements-elicitation.md#Stakeholders)
|
|
- outcome validation [Validation of Requirements](notes/requirements-elicitation.md#Validation%20of%20Requirements)
|
|
|
|
# business functions and use cases
|
|
- business functions - how to identify [1 Id business functions](notes/business-functions.md#1%20Id%20business%20functions)
|
|
- use cases - how to model [2 Use case](notes/business-functions.md#2%20Use%20case)
|
|
- uml use case diagrams [use-case-diagrams](notes/use-case-diagrams.md)
|
|
- actors usecases [2 1 Actor](notes/use-case-diagrams.md#2%201%20Actor) [2 2 Use case](notes/use-case-diagrams.md#2%202%20Use%20case)
|
|
- associations, dependencies [2 3 Association](notes/use-case-diagrams.md#2%203%20Association) [2 5 Dependency](notes/use-case-diagrams.md#2%205%20Dependency)
|
|
|
|
# BPM
|
|
- business processes and how the are modelled [business-process](notes/business-process.md) [[bsin]]
|
|
- BPMN vs (high level) UML activity [business-process-model-and-notation](notes/business-process-model-and-notation.md) [activity-diagrams](notes/activity-diagrams.md)
|
|
|
|
# Data modelling
|
|
- erd concepts [ERD](notes/entity-relationship-diagrams.md)
|
|
- subtypes [subtypes](notes/entity-relationship-diagrams.md#subtypes)
|
|
- parrallel and reursive relationships [parallel relationship](notes/entity-relationship-diagrams.md#parallel%20relationship) [recursive relationship](notes/entity-relationship-diagrams.md#recursive%20relationship)
|
|
- historical data [dealing with data history](notes/entity-relationship-diagrams.md#dealing%20with%20data%20history)
|
|
- normalisation [normalisation](notes/normalisation.md)
|
|
- redundancy and anomalies [redundancy-and-anomalies](notes/redundancy-and-anomalies.md)
|
|
- function and multivaly dependencies [dependencies](notes/dependencies.md)
|
|
- normal forms [2 Normal forms](notes/normalisation.md#2%20Normal%20forms)
|
|
|
|
# Modelling object structure
|
|
- oop concepts [10-oop-concepts-and-uml](notes/10-oop-concepts-and-uml.md)
|
|
- state behaviiour encapsilation
|
|
- class vs instance, object reference
|
|
- uml diagrams [what-are-uml-diagrams](notes/what-are-uml-diagrams.md)
|
|
- steriotypes, visibility, multiplicity [1 Stereotypes](notes/class-diagrams.md#1%20Stereotypes) [3 1 multuplicity](notes/class-diagrams.md#3%201%20multuplicity)
|
|
- specialsation/generalisation, navigability [3 8 Specialisation generalisation](notes/class-diagrams.md#3%208%20Specialisation%20generalisation) [3 4 Navigability](notes/class-diagrams.md#3%204%20Navigability)
|
|
- erd vs class diagram [4 Domain class model](notes/class-diagrams.md#4%20Domain%20class%20model) vs [5 System class model](notes/class-diagrams.md#5%20System%20class%20model)
|
|
# object behaviour
|
|
- inheritance [1 Inheritance](notes/modelling-behaviour.md#1%20Inheritance)
|
|
- specialisation vs implementing an interface [1 1 Via Specialisation](notes/modelling-behaviour.md#1%201%20Via%20Specialisation) vs [1 2 Via Interface](notes/modelling-behaviour.md#1%202%20Via%20Interface)
|
|
- separation of public private API (programming to interface) [1 3 Public vs Private](notes/modelling-behaviour.md#1%203%20Public%20vs%20Private)
|
|
- rich vs anaemic domaini models "processor objects" [2 Behaviour](notes/modelling-behaviour.md#2%20Behaviour)
|
|
- modelling behaviour with uml [modelling-behaviour](notes/modelling-behaviour.md)
|
|
- sequnce diagrams [sequence-diagrams](notes/sequence-diagrams.md)
|
|
- low level activity and state diagrams [activity-diagrams](notes/activity-diagrams.md)
|
|
|
|
# round trip engineering
|
|
- foward engineering [UML to Java Foward Engineering](notes/uml-java-forward-engineering.md)
|
|
- erd -> SQL
|
|
- uml class diagram -> e.g., java
|
|
- correspondenc with use cases
|
|
- reverse engineering (code <- diagrams) [reverse engineering](notes/uml-java-reverse-engineering.md)
|
|
|
|
# Data access
|
|
- data persistence file vs database [Data Access](notes/data-access.md)
|
|
- database APIs (JDBC etc) [JDBC](notes/java-database-connectibity.md)
|
|
- DAOs [DAO](notes/data-access-object.md)
|
|
- oner per use case (not just per domain class)
|
|
- often programming via DAO interface
|
|
|
|
# Database transactions
|
|
- ACID [ACID](notes/18-advanced-sql-1.md#ACID)
|
|
- what and why [Transactions](notes/18-advanced-sql-1.md#Transactions)
|
|
- commit vs rollback [commit and rollback](notes/18-advanced-sql-1.md#commit%20and%20rollback)
|
|
|
|
# SQL select
|
|
- select from where [Select](notes/19-advanced-sql-2.md#Select)
|
|
- sorting grouping aggregation [Aggregation and grouping](notes/19-advanced-sql-2.md#Aggregation%20and%20grouping)
|
|
- view, inner and outer joins, subqueries [Inline views](notes/19-advanced-sql-2.md#Inline%20views) [Joins](notes/19-advanced-sql-2.md#Joins), [Subqueries](notes/19-advanced-sql-2.md#Subqueries)
|
|
|
|
# data integrity
|
|
[20-data-integrity](notes/20-data-integrity.md)
|
|
- nulls and their issues
|
|
- business rules, databas contrainsts, veification, validation [Validation](notes/20-data-integrity.md#Validation) [Verification](notes/20-data-integrity.md#Verification) [Check constrainsts](notes/20-data-integrity.md#Check%20constrainsts) [Primary and foreign key constraints](notes/20-data-integrity.md#Primary%20and%20foreign%20key%20constraints)
|
|
- in-database vs outside database
|
|
- in data base automation: sequence, triggers, stored procedures [Automation](notes/20-data-integrity.md#Automation)
|
|
|
|
# softare architectures, patterns, and templates
|
|
[08-business-patterns](notes/08-business-patterns.md)
|
|
- monolithic vs client/server vs distributed (services) [Monolithic architecture](notes/software-architectures.md#Monolithic%20architecture)
|
|
- separation of reponsilbilities [Separation of reponsibilities](notes/software-architectures.md#Separation%20of%20reponsibilities)
|
|
- "standard patters" of design (recognise) [Generic old info sys architecture](notes/software-architectures.md#Generic%20old%20info%20sys%20architecture)
|
|
- sysstem templates [system-templates](notes/system-templates.md)
|
|
|
|
# performance and security
|
|
- performance requirements [Performance requirements](notes/22-performance-and-security.md#Performance%20requirements)
|
|
- how to quantify and measure
|
|
- response time, workload, scalability
|
|
- caching pooling
|
|
- system reliability
|
|
- security and integrity requirements [Integity and securuty controls](notes/22-performance-and-security.md#Integity%20and%20securuty%20controls)
|
|
- consider throughout development
|
|
- authentication and authorisation
|
|
- principle of least privilege
|
|
- hat a user should only have access to what they absolutely need in order to perform their responsibilities, and no more.
|
|
|
|
# cost benefit analysis
|
|
- project feasbility [justifying a project](notes/25-cost-benefit-analysis.md#justifying%20a%20project)
|
|
- need, funding, strong will
|
|
- duration, priority, rick, uncertainty
|
|
- should we, can we, is it worth it?
|
|
- economic feasibility: [costs and benefits](notes/25-cost-benefit-analysis.md#costs%20and%20benefits)
|
|
- costs vs benefits (tangigble/intangible)
|
|
- payback time (break even), NPV, ROI |