Architecture Principles
- Architecture Principles - Completed
- Components
- Name
- Statement
- Rationale
- Implications
- TOGAF Principles
- Business Principles
- Primacy of Principles
- Maximize Benefit to the Enterprise
- Information Management is Everybody's Business
- Business Continuity
- Common Use Applications
- Compliance with Law - Can Use
- IT Responsibility
- Protection of Intellectual Property
- Data Principles
- Data is an Asset
- Data is Shared
- Data is Accessible
- Data Trustee
- Common Vocabulary and Data Definitions
- Data Security
- Application Principles
- Technology Independence
- Ease-of-Use
- Technology Principles
- Requirements-Based Change
- Responsive Change Management
- Control Technical Diversity
- Interoperability
- Business Principles
- 8 TOGAF Principles
- 7 Architecture Principles Every Enterprise Architect Should Know
- Don't Mess With Success
- Focus On Excellence
- Why Not One?
- Data is an Asset
- Systems Work Where We Work
- Painless User Experience
- Self-Service
- Principles
- Business Principles
- Compliance with Statutory Obligations
- Data Principles
- Data will be Analysable
- Application Principles
- Purchase rather than Develop
- Business Principles
- Principles
- Separation of concerns
- Encapsulation
- Dependency inversion
- Explicit dependencies
- Single responsibility
- Don't repeat yourself (DRY)
- Persistence ignorance
- Bounded contexts
- Principles
- Align IS to the Business Strategy and purpose
- Simplicity - Can Use
- Limit End User Impact
- Stakeholder Satisfaction
- SMART projects
- Security
- Redundancy, HA
- Non-Functional Requirements
- Ownership
- Components
- Technical Requirements - illities - Completed
- Technical Requirements (With Definition and List of Examples)
- 25 Examples of Technical Requirements
- 4.2 Technical Requirements Definition
- Business vs. Functional vs. Technical Requirements
- Technical (Non-Functional) Requirements: An Agile Introduction
- API Response Time (Performance): Golden ratio is under 100 milliseconds – that is the ideal response time. In reality response time might be slower. In that case response time below 1 second is still considered very good. Even time below 3 seconds is still acceptable.
- Availability: Use CI/CD pipeline to implement rapid deploy a new App Engine service and switch all ingress to the new one; Cloud Functions are cloud native service which support high availability naturally.
- Authentication & Authorization: Leverage Azure Active Directory OAuth v2 authentication for RESTful APIs.
- Traceability: Log all incoming event messages from REBAR messaging and store in EventReceivedLog collection (GCP Firestore).
- Security: HTTPS protocol, API authentication, parameter validation, service account based access between compute service and data storage.
- data base backup/recovery - In Progress
Architecture Principles的更多相关文章
- SOLID architecture principles using simple C# examples
转:http://www.codeproject.com/Articles/703634/SOLID-architecture-principles-using-simple-Csharp?msg=4 ...
- Architecture Design Process
Architecture Design Process The architecture design process focuses on the decomposition of a system ...
- Optimizing subroutine calls based on architecture level of called subroutine
A technique is provided for generating stubs. A processing circuit receives a call to a called funct ...
- 让姑姑不再划拳 码农也要有原则 : SOLID via C#
“姑娘,别这样.我们是有原则的.” “一个有原则的程序猿是不会写出 “摧毁地球” 这样的程序的,他们会写一个函数叫 “摧毁行星”而把地球当一个参数传进去.” “对,是时候和那些只会滚键盘的麻瓜不同了, ...
- 翻译-In-Stream Big Data Processing 流式大数据处理
相当长一段时间以来,大数据社区已经普遍认识到了批量数据处理的不足.很多应用都对实时查询和流式处理产生了迫切需求.最近几年,在这个理念的推动下,催生出了一系列解决方案,Twitter Storm,Yah ...
- "reactive programming"的概念
下面的内容大多是翻译来的. Reactive Programming? What is Reactive Programming? 为了了解Reactive——从编程范式至其背后的动机,有必要了解现在 ...
- 一年开发ASP.NET MVC4项目经验总结
一年开发ASP.NET MVC4项目所用所学技术经验总结 阅读目录 文章背景 前端所用技术摘要 后端所用技术摘要 1. 文章背景 本人2014年从Java转行到C#从事BS项目的开发,刚开始接触的是A ...
- TOGAF架构能力框架之架构合同、成熟度模型和架构技能框架
TOGAF架构能力框架之架构合同.成熟度模型和架构技能框架 5. 架构合同 架构合同是在开发团体和赞助者之间关于架构的交付物.质量以及适用目标的联合协议,并且通过有效的架构治理将会促使这些协议的成功施 ...
- 企业架构研究总结(40)——TOGAF架构能力框架之架构合同、成熟度模型和架构技能框架
5. 架构合同 架构合同是在开发团体和赞助者之间关于架构的交付物.质量以及适用目标的联合协议,并且通过有效的架构治理将会促使这些协议的成功施行.通过对合同的管理施行一个治理方法,如下几点将会得到保障: ...
随机推荐
- ssh执行命令或者脚本里最好先加上 source /etc/profile
记: 写一次shell脚本,发现总提示 找不到JAVA_HOME .明明已经配了环境变量,并且java -version也已经能输出信息,但就是提示. 后来在 脚本中加入第一句代码 source /e ...
- QT:QT Creator下载安装
学习自: QtCreator5.12.6安装图文教程 - 知乎 (7条消息) Qt Creator下载安装_芒种.的博客-CSDN博客 (7条消息) QT5.11下载与安装教程_杨书航的博客-CSDN ...
- c# TabControl控件中TabPage选项卡切换时触发的事件
选项卡切换触发的是tabcontrol控件的SelectedIndexChanged事件. 当tabcontrol控件的任何一个tabpage被点击或选择,即发生SelectedIndexChange ...
- 非关系型数据库redis
Redis初始 redis中不区分字母的大小写 查看端口 ss tnlp 安装 编译安装(需要先配置epel源) yum install -y redis 编译安装 wget https://down ...
- TypeScript学习第二天:认识ts的数据类型
目录 1,类型总览 2,基本类型 2.1,布尔 2.2,数字 2.3,字符串 2.4,Null 2.5,undefined 2.6,symbol 2.7,bigint 3,引用类型 3.1,数组 Ar ...
- Lua中如何实现类似gdb的断点调试--02通用变量打印
在前一篇01最小实现中,我们实现了Lua断点调试的的一个最小实现.我们编写了一个模块,提供了两个基本的接口:设置断点和删除断点. 虽然我们已经支持在断点进行变量的打印,但是需要自己指定层数以及变量索引 ...
- tp5 商城商品模型删除
1:控制器代码 public function delete($id) { //验证id是否正确 $id if (!intval($id)) { return getJsonData(10010, ' ...
- ArcGIS对进行数据拓扑修改
空间数据处理--题目1 土地利用数据每年都在发生变化,故每年都要根据去年的数据进行修改.请根据以下要求,修改A区域的数据并对B区域已做好的数据进行拓扑检查. 一. 数据说明(见"题目1&qu ...
- Block对变量的引用
如果在 Block 内部使用外部的变量,Block 会持有这个变量.下面来看几中特殊的情况,看 Block 对变量的持有情况如何. typeof @interface X : NSObject @pr ...
- Redis 新特性:多线程模型解读
Redis 官方在 2020 年 5 月正式推出 6.0 版本,提供很多振奋人心的新特性,所以备受关注. 主要特性如下: 多线程处理网络 IO: 客户端缓存: 细粒度权限控制(ACL): RESP3 ...