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. 架构合同 架构合同是在开发团体和赞助者之间关于架构的交付物.质量以及适用目标的联合协议,并且通过有效的架构治理将会促使这些协议的成功施行.通过对合同的管理施行一个治理方法,如下几点将会得到保障: ...
随机推荐
- elementUI日期选择器 el-date-picker根据所选日期选择禁用
我遇到这样一个场景,需要动态渲染时间表单,但是后端传过来的数据, 这个时候就不能预先找到想要限制的date了,因为连date本身,也是根据后端传来的数据生成的. 如图: 代码如下: //templat ...
- 数据库连接池与SQL工具类
数据库连接池与SQL工具类 1.数据库连接池 依赖包 pymysql dbutils # -*- coding: utf-8 -*- ''' @Time : 2021/11/19 16:45 @Aut ...
- SpringBoot 搭建基于 MinIO 的高性能存储服务
1.什么是MinIO MinIO是根据GNU Affero通用公共许可证v3.0发布的高性能对象存储.它与Amazon S3云存储服务兼容.使用MinIO构建用于机器学习,分析和应用程序数据工作负载的 ...
- C++:用字符串数组实现大数运算,以两个不高于40位的大数运算为例。
因为基本数据类型中整型的内存范围有限,所以直接进行大数之间的运算,不仅浪费空间,而且运行缓慢,甚至有些会导致数据溢出. 那怎么办呢? 这时我们就想直接不行,那咱们来间接的. 这就是我们今天主要要讲的: ...
- Git更新本地仓库及冲突"Commit your changes or stash them before you can merge"解决
Git中从远程的分支获取最新的版本到本地有这样2个命令: 1. git fetch:相当于是从远程获取最新版本到本地,不会自动merge git fetch origin mastergit log ...
- Kendo UI Grid 使用总结
Kendo UI Grid控件的功能强大,这里将常用的一些功能总结一下. Kendo UI Grid 固定列 在使用Gird控件显示数据时,如果数据列过多,会出现横向滚动条,很多情况下,我们希望某些列 ...
- linux tr命令实现windows文本格式与linux文本格式间的转换
tr 命令 转换和删除字符 选项: -d --delete:删除字符 -s --squeeze-repeats:把连续重复的字符以一个字符表示,即去重 -c –C --complement:取字符集的 ...
- SQL从零到迅速精通【实用函数(2)】
1.对查询结果进行排序 查询stu_info表中所有学生信息,并按照成绩由高到底进行排序,输入语句如下. SELECT * FROM stu_info ORDER BY s_score DESC; ...
- ob-页面静态化(1)
$page = $_GET['page'] ?? 1; $filename = 'list_' . $page . '.html'; ////判断有没有静态页面,有的话直接读取静态页面,没有的话,连接 ...
- spring源码干货分享-对象创建详细解析(set注入和初始化)
记录并分享一下本人学习spring源码的过程,有什么问题或者补充会持续更新.欢迎大家指正! 环境: spring5.X + idea 建议:学习过程中要开着源码一步一步过 Spring根据BeanDe ...