English 中文(简体)
How to go from uml to app in zope (plone)
原标题:

I have watched this keynote that talk about develop an app based on an UML model, but I can t find any tutorial or docs about it.

Do you know any tutorial or documentation to help me?

thanks

最佳回答

Have a look at ArchGenXML.

ArchGenXML is a code generator. It builds on architecture-centric, model-based and test-driven development. Generates Python code from UML-Models (XMI-Format). It s optimized for the generation of code based on the Archetypes framework.

Documentation about using it with Plone (Zope) can be found here.

问题回答

As Aussie says, ArchGenXML is the way to go - I use it a lot. But use Paster and Zopeskel too. Create an "egg" skeleton as documented in the link (use the "archetype" template), then create your model (A .zargo file) in the main code directory (ie, the directory containing config.py).

This way ArchgenXML (AGX) will create everything as appropriate for an egg.

UML (Unified Modeling Languge) - is a modeling language. Is used to specify, visualize, modify, construct and document the artifacts of an object-oriented software intensive system under development.

Refer to here. [http://en.wikipedia.org/wiki/Unified_Modeling_Language][1]

If you searched using "UML" you ll find a bunch of result that will help you.

As soon as you will understand the concept of UML and know how to create UML diagrams then there s no more problem creating your app based on your model.

Very best,





相关问题
Understanding UML of DoFactory Design Pattern - Decorator

I am trying to understand UML diagram describing Decorator Pattern at link below http://www.dofactory.com/Patterns/PatternDecorator.aspx I don t understand why there is a "Aggregation" relation ...

UML Code generation tool in C# [closed]

Please suggest me any opensource tool to generate C# code from UML designer,Or any plugin to generate code from visualstudio. My requirement is to have a code generation tool for C#.

How to design/plan for web application development?

I m interested in learning how to design/plan for web application development, in a multiple developer team scenario. Assuming the role of "Project Manager/Lead": What "documents" are needed for ...

Software for Sequence Diagrams? [closed]

I ve been using NClass for object/class modeling in class thus far. However, I do not believe that it is capable of sequence diagrams, which is my next task. I would prefer not to use Visio. Is ...

UML Diagram to Model API

I need to create a diagram to document a RESTFul API that build, which UML diagram should I use? Thanks in advance,

Where could I find some UML samples? [closed]

I need a punch of samples of UML diagrams to get an start point to develop my own diagrams. Does anyone know about a good website where I could find it? Thanks!

热门标签