Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Do You Keep UML Diagrams Up To Date?

Tags:

java

uml

I am from a Physics background and not a Computer Science background and never did any course at University on class/component diagrams etc and I have never found the need to use them at work.

The main thing that I don't understand is how do you keep them up to date if the code is still being developed or maintained?

e.g. What's to stop me from refactoring several methods or classes and making the class diagram obsolete?

Do you have to constantly update the diagram manually?

I have seen tools that generate UML from the code and these could keep it up to date I suppose but from what I have seen, the auto-generated diagrams don't seem to be useful enough.

Is the UML for a project likely to be created at the start then be left in a documentation folder and gradually get more and more out of date?

like image 226
opticyclic Avatar asked Jun 29 '14 07:06

opticyclic


1 Answers

I work for a moderately large government agency, so most of our major projects fall into the "Enterprise Java" category. This is what works for us:

  • Architects model any changes and extensions to our corporate data model using UML diagrams. Generally there will be a conceptual model class diagram, plus a few sequence diagrams that illustrate how the various parts of the system will interact, and maybe a couple of component diagrams.
  • We have a walkthrough with the business analysts, DBAs and lead developers. This idea of this is to challenge the new model, and agree on changes (there is a lot of "robust" discussion at these sessions). With a good architect, the changes are minimal.
  • A senior developer creates a technical specification that will typically include a physical database ER diagram based on the architectural model. From the physical model, we automatically generate a database creation script.
  • The DBAs upgrade the creation script (e.g. Add tablespace and indexspace info) and create/extend the database.
  • The code gets written. Developers may create their own mini class hierarchies (e.g. POJOs to carry around data). We don't bother to model these in UML as the code should be self-documenting, and changes are inevitable as the code evolves.
  • Quite often changes will occur during the development phase, especially if using agile methodologies. If these impact on the corporate data model, then the UML and ER diagrams will be updated.
  • At the end of the project, the documentation is updated to reflect "as built" state.

Getting back to the gist of your question, I'm not a great believer in automated UML <-> code generation. Generally there is data that is personal to the UML diagram (notes, relationship cardinality, sequence diagrams etc) that does not appear in the code or is very difficult to extract. Conversely the code contains stuff (e.g. behavioural method working logic, data structures and caches) that do not necessarily show in the logical UML model. Then there is the whole question of how you map the logical model class hierarchy to database tables...

To summarise, I recommend:

  • Get the design correct up front. Changes to the logical model are expensive and awkward to implement.
  • Use a modelling tool that will support all of the artifacts you need from the same data source. That is, the initial UML logical model, the database ER diagram and the database creation SQL DDL. We use Enterprise Architect, but there are lots of other tools that will do this.
  • Use UML to model the "big picture" and forget it for describing detailed coding. A good rule of thumb is you need UML if any change to the model affects more than just your team. (e.g. A new database field may require a change to the database, a change to a web service, a change to the GUI and a change to a mainframe batch process. UML has a place in defining the data change in a way multiple teams can understand)
like image 64
kiwiron Avatar answered Sep 29 '22 03:09

kiwiron