SlideShare a Scribd company logo
Eberhard Wolff, adesso AG


Ten Advices for Architects
About me
•    Eberhard Wolff
•    Architecture & Technology Manager at adesso
•    adesso is a leading IT consultancy in Germany
•    Speaker
•    Author (e.g. first German Spring book)
•    Blog: http://ewolff.com
•    Twitter: @ewolff
•    http://slideshare.com/ewolff
•    eberhard.wolff@adesso.de
Why?
•  Educating architects internally at adesso

•  What should they know?

•  What is the bare minimum?
Software Architect
Software architect is a general term
with many accepted definitions
which refers to a broad range of roles.
        Not really well defined…
Software Architecture
The software architecture of a system is the set of
                        structures
needed to reason about it, which comprise
                   software elements,
              relations among them, and
                   properties of both.
Why We Care
    Defines
Structures                    Performance
Software elements

non-functional
Relations
Properties
                              Availability


                              Productivity


requirements &
      Software
     Architecture
                             Maintainability



    quality                       Security


                              Operations
Software Architect:
              Responsibilities
•  Manager
•  Responsibility: non-functional
   requirements / quality
•  Tool: Define and enforce
   architecture

•  Functional requirements covered
   by requirements process
•  Functional requirements influence
   the architecture
YOU ARE NOT AN
ARCHITECT!
Agile Development i.e. Scrum
Where is    Scrum Master
          Removes obstacles
            Enforces rules


  the
Architect         Stories




   ?
   Product
    Owner
Creates stories
                                     Team
                                Self-organizing
                              Implements stories
You Are Not An Architect!
•    No manager
•    Need to convince not manage
•    Therefore: Not that different from a developer
•    More experienced
•    More knowledge
Is “Architect” a Good Metaphor?
•  Buildings are physical entities
   –  Hard to change

•  Construction industry is established
•  …and has a long history

•  Buildings can be fully specified
•  Software can’t (see Agility)

•  Clear separation: Architect vs.
   construction worker
•  Common for a Software Architect to
   be a former developer
•  …or even doing some coding
Different Way to Think About
  1999
           Roles
                     2001
Software Craftsmanship Manifesto
             (2009)
•  As aspiring Software Craftsmen we are raising the bar
   of professional software development by practicing it
   and helping others learn the craft. Through this work
   we have come to value:

•  Not only working software,
   –  but also well-crafted software
•  Not only responding to change,
   –  but also steadily adding value
•  Not only individuals and interactions,
   –  but also a community of professionals
•  Not only customer collaboration,
   –  but also productive partnerships
Architect as a Master Craftsman
•  More experienced
•  Knows the tools very
   well
•  Guides and helps others
•  Incorporates feedback
•  Improves the craft
•  Quality

•  Will work on code
•  But knows the bigger
   picture of the project

•  Education and work on
   the project at hand
YOUR OPINION MATTERS!
Your Opinion Matters!
•  You need to have your own opinion
•  …about technologies
•  …about architecture approaches

•  Listen to opinions of others
•  …but come up with your own
•  Your responsibility
•  http://lemmings.mytrash.tv/
Your Opinion Matters!
•  This applies to this conference
•  …and this talk
•  If it does not make sense to you
  –  say so


•  Your opinion – your responsibility
•  Even if someone is a speaker – he might still
   be wrong
•  Never be intimidated!
PEOPLE WANT TO IMPROVE!
People Want to Improve!
•  Technical people take pride in
   their skills
•  …often also quality

•  They want to improve and create
   great quality!

•  Guide the way
•  Define what quality is
What You Can Do…
•    Education
•    Review
•    Pairing
•    Talks
•    …
What If They Don’t Want to
              Improve?
•  You are screwed
•  No way to create high quality with
   those people

•  Ensure that they know what
   quality is and what is expected
ARCHITECTURE = TRADE OFF
Architecture = Trade Off
•  There are numerous ways to architect
   each system
•  There is no one single right
   architecture
•  Each architecture has strength and
   weaknesses

•  Think about architecture in terms of
   Trade Offs
•  Do they match your requirements?
Example for Trade Off:
            Persistence
•  Option: SQL
  –  More control
  –  Less infrastructure
•  Option: O/R mapper
  –  Seemingly easier to use
  –  But a complex piece of technology
•  Option: NoSQL
  –  A lot of options with individual strength and
     weaknesses
IMPROVE YOUR
VOCABULARY
Vocabulary
•  Approaches to architecting a
   system
•  Defines what kind of architectures
   and systems you can express

•  The more you know the better you
   can do trade offs
•  Will offer new perspectives on what
   you doing
•  Also it is interesting to learn what
   others do
How to Improve Your Vocabulary
•  Patterns
  –  Fowler: Patterns of Enterprise
     Application Architecture
  –  Gamma et al: Design Patterns
  –  Buschmann et al: Patterns-
     Oriented Software Architecture
  –  Hohpe: Pattern of Enterprise
     Integration
•  Evans: Domain Driven Design
How to Improve Your Vocabulary
•  Technologies
  –  How many Persistence
     approaches do you know?
  –  Should at least have a high level
     overview
  –  There is life beyond standards
  –  Can save a lot of time and effort
•  Conferences
•  Web Sites
•  Reviews
Again: Persistence
•  “Patterns of Enterprise Application
   Architecture” lists persistence approaches

•  Ruby on Rails uses Active Record (i.e.
   objects can store themselves)
•  myBATIS for easy persistence using SQL
   (Java / .NET)
•  …
EAT YOUR OWN DOG FOOD!
Eat Your Own Dog Food!
•  Defining an architecture is easy
•  It is hard to create the right
   architecture

•  Need feedback

•  Eat your own dog food: Develop
   code yourself
•  Do pair programming
•  To become grounded
NO BROKEN WINDOWS
Broken Windows Theory
•  Once windows are not
   repaired…
•  …vandals will break more
•  …break into the building
•  …

•  Accepting compromises on
   quality is risky
•  …but if you strive for ultimate
   quality everywhere, you will fail

•  In particular with legacy
   software
Broken Windows in Architecture
•  Compromises on quality will
   become out of hand
•  Might speed up a project for
   a limited time
•  But: Will hurt productivity in
   the long run
•  …and ultimately slow it down
•  Higher quality can mean less
   cost and quicker delivery
•  Metaphor: Technical debt
•  Much like debt in real life
But…
•  There might still be broken windows
•  There might be more and less skilled
   developers

•  What do I do?
STRATEGIC DESIGN
Domain Driven Design
•  “Tackling Complexity
   in the Heart of
   Software”

•  E.g. Ubiquitous
   Language
   for Code, Developers
   and Customers
Strategic Domain Driven Design
•  Bounded Context:
   Model used only in a specific
   part of the system

•  Context Map:
   Translate models from
   different parts of the system

•  Anti-Corruption Layer:
   Make sure the core domain
   is not corrupted
Strategic Domain Driven Design
•  Can be used to manage
   quality
•  What are the core business
   domains?
•  Focus on quality of those
•  Isolate them from the rest of
   the system
•  Let the best developer work
   on the most important parts
Strategic Domain Driven Design
•  Acknowledges that not all developers are
   equals
•  …and not all parts of a system will have the
   same quality

•  Allows you to steer which parts will be better
CARE ABOUT ARCHITECTURE
AND CODE
Care About Architecture and Code
•  You can draw diagrams until the end of time
•  It’s the code and the architecture in the code
   that matters
•  Architectures is only used to influence code
MEASURE AND REDUCE
Measure and Reduce
•  No way to know all code by heart
•  Still: You and the team need to understand
   the state of the project
•  Need tools to measure and reduce
   information
Sonar
•    Server that integrates a lot of systems
•    Static code analysis (Findbugs, PMD etc)
•    Lines of Code, classes
•    Test code coverage
•    Complexity
•    Historized i.e. easy to spot trends
•    Easy to install
•    Visit http://nemo.sonarsource.org/ for
     examples
Draw Conclusions!
•  Do not try to enforce a certain value for a
   metric!
•  Metrics are used to reduce information and
   get warning signs
•  Use them to improve quality
•  If you enforce a value mindlessly problems
   will be avoided – not solved
•  …and measurements will become worthless
DEPENDENCIES MATTER!
Dependency Management
•  Essential for measuring architecture
•  i.e. what is the structure in the code?

•  Why are Dependencies so important?
What is Architecture?
•  Architecture is the decomposition of systems
   in parts

•  No large or complex parts
•  No cyclic dependencies
Normal Dependencies
•  A and B might be
   packages or classes
                             Component A

•  B depends on A, i.e. it
   uses classes, methods
   etc.
                             Component B
•  Changes in A impact B
•  Changes in B do not
   impact A
Cyclic Dependency
•  B depends on A and A on
   B
                              Component A
•  Changes in A impact B
•  Changes in B impact A
•  A and B can only be
   changed as one unit        Component B
•  …even though they should
   be two separate units
Bigger cyclic dependencies

 Component A


                Component B


 Component C
Measure Dependencies!
•  …otherwise they will get out of hand
•  Cyclic dependencies mean:
  –  It should be separated according to the
     architecture
  –  …but it is not


•  JDepend – rather outdated
•  Structure 101
•  Sonargraph
Care about
                You are Not an    Architecture is
 Code and                                           Quality
                  Architect         Trade Off
Architecture


  Measure and      Eat your own                     No Broken
                                      Vocabulary
    Reduce          Dog Food                        Windows



 Dependencies      People Want                       Strategic
    Matter          To Improve                        Design



 And Remember: Your Opinion Matters!
Wir suchen Sie als
Ø    Software-Architekt (m/w)
Ø    Projektleiter (m/w)
Ø    Senior Software Engineer (m/w)


Ø    Kommen Sie zum Stand und gewinnen Sie ein iPad 2!

  jobs@adesso.de
  www.AAAjobs.de

More Related Content

PPTX
Dependency injection with Symfony 2
PPTX
Introduction To AOP
PPTX
Intro To AOP
PPTX
Clean code
PDF
Refactoring for Software Design Smells
PPTX
01 introduction to entity framework
PPTX
04 managing the database
PPTX
From 1 to 100
Dependency injection with Symfony 2
Introduction To AOP
Intro To AOP
Clean code
Refactoring for Software Design Smells
01 introduction to entity framework
04 managing the database
From 1 to 100

What's hot (8)

PPTX
Cqrs and Event Sourcing Intro For Developers
PPS
Design Patterns For 70% Of Programmers In The World
PDF
Domain-Driven Design (Artur Trosin Product Stream)
PDF
Clean architecture with ddd layering in php
PDF
Software Architecture: Principles, Patterns and Practices
PDF
Hexagonal architecture - message-oriented software design
PPTX
How I Learned To Apply Design Patterns
PDF
Solid principles, Design Patterns, and Domain Driven Design
Cqrs and Event Sourcing Intro For Developers
Design Patterns For 70% Of Programmers In The World
Domain-Driven Design (Artur Trosin Product Stream)
Clean architecture with ddd layering in php
Software Architecture: Principles, Patterns and Practices
Hexagonal architecture - message-oriented software design
How I Learned To Apply Design Patterns
Solid principles, Design Patterns, and Domain Driven Design
Ad

Viewers also liked (11)

PPTX
Redesigning the organization
PPS
Material Information for Architects
PDF
IBS Builder's Show 2017 Review
PPT
Bacons Architectural Sun Shades
PPT
Talking to Architects: How Social Media Can Help - RIBA CPD Providers Networ...
PPTX
What architects want - getting your construction product specified
PPTX
Broken Window Theory
PDF
How to Sell Architects
PPTX
Ready-Mix Concrete
PPTX
So you want to be a pre sales architect or consultant
PPTX
The Architect's Clue Bucket
Redesigning the organization
Material Information for Architects
IBS Builder's Show 2017 Review
Bacons Architectural Sun Shades
Talking to Architects: How Social Media Can Help - RIBA CPD Providers Networ...
What architects want - getting your construction product specified
Broken Window Theory
How to Sell Architects
Ready-Mix Concrete
So you want to be a pre sales architect or consultant
The Architect's Clue Bucket
Ad

Similar to Ten Advices for Architects (20)

KEY
Agile Architecture (MAE slides)
PDF
XP-Manchester 2013 Software Architecture for Agile Developers Intro
ODP
Software Patterns
PPTX
NISI Agile Software Architecture Slide Deck
PPS
Architecture
PDF
Applying Agile Values to Enterprise Architecture Software Architectural Trend...
DOCX
Software architecture Unit 1 notes
PDF
ASAS 2014 - Simon Brown
PDF
SAF - architecture framework
PDF
Essential Software Architecture - Chapter 1 Understanding Software Architectu...
PPT
02 architectures in_context
PDF
The Modern Software Architect
PDF
Evolving Software Patterns
PDF
Software archiecture lecture03
PDF
L16 Documenting Software
PDF
01 Introduction to SDA 2.pdf software architecture
PPTX
The Role of the Architect
PDF
Software architecture for developers
PPT
Importance of Software architecture
PPTX
Architecture Design
Agile Architecture (MAE slides)
XP-Manchester 2013 Software Architecture for Agile Developers Intro
Software Patterns
NISI Agile Software Architecture Slide Deck
Architecture
Applying Agile Values to Enterprise Architecture Software Architectural Trend...
Software architecture Unit 1 notes
ASAS 2014 - Simon Brown
SAF - architecture framework
Essential Software Architecture - Chapter 1 Understanding Software Architectu...
02 architectures in_context
The Modern Software Architect
Evolving Software Patterns
Software archiecture lecture03
L16 Documenting Software
01 Introduction to SDA 2.pdf software architecture
The Role of the Architect
Software architecture for developers
Importance of Software architecture
Architecture Design

More from Eberhard Wolff (20)

PDF
Architectures and Alternatives
PDF
Beyond Microservices
PDF
The Frontiers of Continuous Delivery
PDF
Four Times Microservices - REST, Kubernetes, UI Integration, Async
PDF
Microservices - not just with Java
PDF
Deployment - Done Right!
PDF
Data Architecture not Just for Microservices
PDF
How to Split Your System into Microservices
PDF
Microservices and Self-contained System to Scale Agile
PDF
How Small Can Java Microservices Be?
PDF
Data Architecturen Not Just for Microservices
PDF
Microservices: Redundancy=Maintainability
PDF
Self-contained Systems: A Different Approach to Microservices
PDF
Microservices Technology Stack
PDF
Software Architecture for Innovation
PDF
Five (easy?) Steps Towards Continuous Delivery
PDF
Nanoservices and Microservices with Java
PDF
Microservices: Architecture to Support Agile
PDF
Microservices: Architecture to scale Agile
PDF
Microservices, DevOps, Continuous Delivery – More Than Three Buzzwords
Architectures and Alternatives
Beyond Microservices
The Frontiers of Continuous Delivery
Four Times Microservices - REST, Kubernetes, UI Integration, Async
Microservices - not just with Java
Deployment - Done Right!
Data Architecture not Just for Microservices
How to Split Your System into Microservices
Microservices and Self-contained System to Scale Agile
How Small Can Java Microservices Be?
Data Architecturen Not Just for Microservices
Microservices: Redundancy=Maintainability
Self-contained Systems: A Different Approach to Microservices
Microservices Technology Stack
Software Architecture for Innovation
Five (easy?) Steps Towards Continuous Delivery
Nanoservices and Microservices with Java
Microservices: Architecture to Support Agile
Microservices: Architecture to scale Agile
Microservices, DevOps, Continuous Delivery – More Than Three Buzzwords

Recently uploaded (20)

PDF
Approach and Philosophy of On baking technology
PDF
Machine learning based COVID-19 study performance prediction
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
A Presentation on Artificial Intelligence
PPT
Teaching material agriculture food technology
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Modernizing your data center with Dell and AMD
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
Big Data Technologies - Introduction.pptx
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Approach and Philosophy of On baking technology
Machine learning based COVID-19 study performance prediction
Chapter 3 Spatial Domain Image Processing.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Per capita expenditure prediction using model stacking based on satellite ima...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
A Presentation on Artificial Intelligence
Teaching material agriculture food technology
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Mobile App Security Testing_ A Comprehensive Guide.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Network Security Unit 5.pdf for BCA BBA.
Modernizing your data center with Dell and AMD
Dropbox Q2 2025 Financial Results & Investor Presentation
Understanding_Digital_Forensics_Presentation.pptx
Big Data Technologies - Introduction.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication

Ten Advices for Architects

  • 1. Eberhard Wolff, adesso AG Ten Advices for Architects
  • 2. About me •  Eberhard Wolff •  Architecture & Technology Manager at adesso •  adesso is a leading IT consultancy in Germany •  Speaker •  Author (e.g. first German Spring book) •  Blog: http://ewolff.com •  Twitter: @ewolff •  http://slideshare.com/ewolff •  eberhard.wolff@adesso.de
  • 3. Why? •  Educating architects internally at adesso •  What should they know? •  What is the bare minimum?
  • 4. Software Architect Software architect is a general term with many accepted definitions which refers to a broad range of roles. Not really well defined…
  • 5. Software Architecture The software architecture of a system is the set of structures needed to reason about it, which comprise software elements, relations among them, and properties of both.
  • 6. Why We Care Defines Structures Performance Software elements non-functional Relations Properties Availability Productivity requirements & Software Architecture Maintainability quality Security Operations
  • 7. Software Architect: Responsibilities •  Manager •  Responsibility: non-functional requirements / quality •  Tool: Define and enforce architecture •  Functional requirements covered by requirements process •  Functional requirements influence the architecture
  • 8. YOU ARE NOT AN ARCHITECT!
  • 9. Agile Development i.e. Scrum Where is Scrum Master Removes obstacles Enforces rules the Architect Stories ? Product Owner Creates stories Team Self-organizing Implements stories
  • 10. You Are Not An Architect! •  No manager •  Need to convince not manage •  Therefore: Not that different from a developer •  More experienced •  More knowledge
  • 11. Is “Architect” a Good Metaphor? •  Buildings are physical entities –  Hard to change •  Construction industry is established •  …and has a long history •  Buildings can be fully specified •  Software can’t (see Agility) •  Clear separation: Architect vs. construction worker •  Common for a Software Architect to be a former developer •  …or even doing some coding
  • 12. Different Way to Think About 1999 Roles 2001
  • 13. Software Craftsmanship Manifesto (2009) •  As aspiring Software Craftsmen we are raising the bar of professional software development by practicing it and helping others learn the craft. Through this work we have come to value: •  Not only working software, –  but also well-crafted software •  Not only responding to change, –  but also steadily adding value •  Not only individuals and interactions, –  but also a community of professionals •  Not only customer collaboration, –  but also productive partnerships
  • 14. Architect as a Master Craftsman •  More experienced •  Knows the tools very well •  Guides and helps others •  Incorporates feedback •  Improves the craft •  Quality •  Will work on code •  But knows the bigger picture of the project •  Education and work on the project at hand
  • 16. Your Opinion Matters! •  You need to have your own opinion •  …about technologies •  …about architecture approaches •  Listen to opinions of others •  …but come up with your own •  Your responsibility
  • 18. Your Opinion Matters! •  This applies to this conference •  …and this talk •  If it does not make sense to you –  say so •  Your opinion – your responsibility •  Even if someone is a speaker – he might still be wrong •  Never be intimidated!
  • 19. PEOPLE WANT TO IMPROVE!
  • 20. People Want to Improve! •  Technical people take pride in their skills •  …often also quality •  They want to improve and create great quality! •  Guide the way •  Define what quality is
  • 21. What You Can Do… •  Education •  Review •  Pairing •  Talks •  …
  • 22. What If They Don’t Want to Improve? •  You are screwed •  No way to create high quality with those people •  Ensure that they know what quality is and what is expected
  • 24. Architecture = Trade Off •  There are numerous ways to architect each system •  There is no one single right architecture •  Each architecture has strength and weaknesses •  Think about architecture in terms of Trade Offs •  Do they match your requirements?
  • 25. Example for Trade Off: Persistence •  Option: SQL –  More control –  Less infrastructure •  Option: O/R mapper –  Seemingly easier to use –  But a complex piece of technology •  Option: NoSQL –  A lot of options with individual strength and weaknesses
  • 27. Vocabulary •  Approaches to architecting a system •  Defines what kind of architectures and systems you can express •  The more you know the better you can do trade offs •  Will offer new perspectives on what you doing •  Also it is interesting to learn what others do
  • 28. How to Improve Your Vocabulary •  Patterns –  Fowler: Patterns of Enterprise Application Architecture –  Gamma et al: Design Patterns –  Buschmann et al: Patterns- Oriented Software Architecture –  Hohpe: Pattern of Enterprise Integration •  Evans: Domain Driven Design
  • 29. How to Improve Your Vocabulary •  Technologies –  How many Persistence approaches do you know? –  Should at least have a high level overview –  There is life beyond standards –  Can save a lot of time and effort •  Conferences •  Web Sites •  Reviews
  • 30. Again: Persistence •  “Patterns of Enterprise Application Architecture” lists persistence approaches •  Ruby on Rails uses Active Record (i.e. objects can store themselves) •  myBATIS for easy persistence using SQL (Java / .NET) •  …
  • 31. EAT YOUR OWN DOG FOOD!
  • 32. Eat Your Own Dog Food! •  Defining an architecture is easy •  It is hard to create the right architecture •  Need feedback •  Eat your own dog food: Develop code yourself •  Do pair programming •  To become grounded
  • 34. Broken Windows Theory •  Once windows are not repaired… •  …vandals will break more •  …break into the building •  … •  Accepting compromises on quality is risky •  …but if you strive for ultimate quality everywhere, you will fail •  In particular with legacy software
  • 35. Broken Windows in Architecture •  Compromises on quality will become out of hand •  Might speed up a project for a limited time •  But: Will hurt productivity in the long run •  …and ultimately slow it down •  Higher quality can mean less cost and quicker delivery •  Metaphor: Technical debt •  Much like debt in real life
  • 36. But… •  There might still be broken windows •  There might be more and less skilled developers •  What do I do?
  • 38. Domain Driven Design •  “Tackling Complexity in the Heart of Software” •  E.g. Ubiquitous Language for Code, Developers and Customers
  • 39. Strategic Domain Driven Design •  Bounded Context: Model used only in a specific part of the system •  Context Map: Translate models from different parts of the system •  Anti-Corruption Layer: Make sure the core domain is not corrupted
  • 40. Strategic Domain Driven Design •  Can be used to manage quality •  What are the core business domains? •  Focus on quality of those •  Isolate them from the rest of the system •  Let the best developer work on the most important parts
  • 41. Strategic Domain Driven Design •  Acknowledges that not all developers are equals •  …and not all parts of a system will have the same quality •  Allows you to steer which parts will be better
  • 43. Care About Architecture and Code •  You can draw diagrams until the end of time •  It’s the code and the architecture in the code that matters •  Architectures is only used to influence code
  • 45. Measure and Reduce •  No way to know all code by heart •  Still: You and the team need to understand the state of the project •  Need tools to measure and reduce information
  • 46. Sonar •  Server that integrates a lot of systems •  Static code analysis (Findbugs, PMD etc) •  Lines of Code, classes •  Test code coverage •  Complexity •  Historized i.e. easy to spot trends •  Easy to install •  Visit http://nemo.sonarsource.org/ for examples
  • 47. Draw Conclusions! •  Do not try to enforce a certain value for a metric! •  Metrics are used to reduce information and get warning signs •  Use them to improve quality •  If you enforce a value mindlessly problems will be avoided – not solved •  …and measurements will become worthless
  • 49. Dependency Management •  Essential for measuring architecture •  i.e. what is the structure in the code? •  Why are Dependencies so important?
  • 50. What is Architecture? •  Architecture is the decomposition of systems in parts •  No large or complex parts •  No cyclic dependencies
  • 51. Normal Dependencies •  A and B might be packages or classes Component A •  B depends on A, i.e. it uses classes, methods etc. Component B •  Changes in A impact B •  Changes in B do not impact A
  • 52. Cyclic Dependency •  B depends on A and A on B Component A •  Changes in A impact B •  Changes in B impact A •  A and B can only be changed as one unit Component B •  …even though they should be two separate units
  • 53. Bigger cyclic dependencies Component A Component B Component C
  • 54. Measure Dependencies! •  …otherwise they will get out of hand •  Cyclic dependencies mean: –  It should be separated according to the architecture –  …but it is not •  JDepend – rather outdated •  Structure 101 •  Sonargraph
  • 55. Care about You are Not an Architecture is Code and Quality Architect Trade Off Architecture Measure and Eat your own No Broken Vocabulary Reduce Dog Food Windows Dependencies People Want Strategic Matter To Improve Design And Remember: Your Opinion Matters!
  • 56. Wir suchen Sie als Ø  Software-Architekt (m/w) Ø  Projektleiter (m/w) Ø  Senior Software Engineer (m/w) Ø  Kommen Sie zum Stand und gewinnen Sie ein iPad 2! jobs@adesso.de www.AAAjobs.de