You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _docs/generators/generators.md
+2-9
Original file line number
Diff line number
Diff line change
@@ -3,16 +3,14 @@ title: Generators Overview
3
3
permalink: /docs/generators/
4
4
---
5
5
6
-
The Context Mapper generators provide transformations to derive graphical Context Maps, [PlantUML diagrams](http://plantuml.com/),
7
-
[Microservice Domain-Specific Langauge (MDSL)](https://microservice-api-patterns.github.io/MDSL-Specification/) (micro-)service contracts, and
8
-
[Service Cutter](https://servicecutter.github.io/) input files from your CML context map. We also provide a [generic, template-based generator](/docs/generic-freemarker-generator/)
6
+
The Context Mapper generators provide transformations to derive graphical Context Maps, [PlantUML diagrams](http://plantuml.com/), and
7
+
[Microservice Domain-Specific Langauge (MDSL)](https://microservice-api-patterns.github.io/MDSL-Specification/) (micro-)service contracts from your CML context map. We also provide a [generic, template-based generator](/docs/generic-freemarker-generator/)
9
8
based on Freemarker which allows to generate arbitrary textual files.
The generic, template-based generator allows you to generate arbitrary text files from CML Context Maps. It uses [Freemarker](https://freemarker.apache.org/) as its template engine and exposes the entire CML content as an object tree whose elements can be injected into the template.
Copy file name to clipboardexpand all lines: _docs/getting-started.md
-2
Original file line number
Diff line number
Diff line change
@@ -108,11 +108,9 @@ Check out our [example models](/docs/examples/) and the [language reference](/do
108
108
Once you created your first Context Map in CML you can use the following tools to evolve your model and generate other representations of your architecture:
109
109
110
110
* Use [Architectural Refactorings (ARs)](/docs/architectural-refactorings/) to evolve your model iteratively.
111
-
* Let [Service Cutter](/docs/service-cutter-context-map-suggestions/) analyze your model and suggest new Context Maps on the basis of its [coupling criteria](https://github.com/ServiceCutter/ServiceCutter/wiki/Coupling-Criteria).
<strong>Note:</strong> This feature has been <strong>deactivated</strong> with <ahref="https://contextmapper.org/news/2023/11/24/v6.10.0-released/">release v6.10.0</a> of Context Mapper.
8
+
</div>
9
+
6
10
The [Service Cutter](http://servicecutter.github.io/) tool proposes a structured way to service decomposition. It suggests how a system could be decomposed into services according to 14 prioritized [coupling criteria](https://github.com/ServiceCutter/ServiceCutter/wiki/Coupling-Criteria). Domain model elements are required as input. The tool then applies graph clustering algorithms to identify possible *service cuts*, which are returned as output. The approach was proposed in [this paper](https://www.researchgate.net/publication/307873263_Service_Cutter_A_Systematic_Approach_to_Service_Decomposition).
Copy file name to clipboardexpand all lines: _docs/service-cutter/service-cutter-config-file.md
+4
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@ title: Service Cutter Configuration File (.servicecutter.yml)
3
3
permalink: /docs/service-cutter-config-file/
4
4
---
5
5
6
+
<divclass="alert alert-danger">
7
+
<strong>Note:</strong> This feature has been <strong>deactivated</strong> with <ahref="https://contextmapper.org/news/2023/11/24/v6.10.0-released/">release v6.10.0</a> of Context Mapper.
8
+
</div>
9
+
6
10
Context Mapper uses [Service Cutter](https://github.com/ServiceCutter/ServiceCutter/) to [propose new Context Maps (service decompositions)](/docs/service-cutter-context-map-suggestions/). There is also a [tutorial](/docs/systematic-service-decomposition/) that explains how this works.
7
11
8
12
However, since we do not provide a user interface to configure the coupling criteria priorities as the original [Service Cutter](https://github.com/ServiceCutter/ServiceCutter/) tool does, we provide a file called `.servicecutter.yml` that allows you to configure the service cutting engine.
Copy file name to clipboardexpand all lines: _docs/standalone-usage.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ permalink: /docs/library/
4
4
---
5
5
6
6
The Context Mapper DSL (CML) and its tools cannot only be used within Visual Studio Code or Eclipse, but also be integrated into other applications as a
7
-
standalone library. This library allows you to parse CML files within a project, change the model programmatically, and unparse it back to CML. You can also use tools such as the [Architectural Refactorings](/docs/architectural-refactorings/) and the provided generators for [graphical context maps](/docs/context-map-generator/), [PlantUML](/docs/plant-uml/), [MDSL](/docs/mdsl/), [Service Cutter](/docs/service-cutter/), and [Freemarker templates](/docs/generic-freemarker-generator/).
7
+
standalone library. This library allows you to parse CML files within a project, change the model programmatically, and unparse it back to CML. You can also use tools such as the [Architectural Refactorings](/docs/architectural-refactorings/) and the provided generators for [graphical context maps](/docs/context-map-generator/), [PlantUML](/docs/plant-uml/), [MDSL](/docs/mdsl/), and [Freemarker templates](/docs/generic-freemarker-generator/).
8
8
9
9
## Integration
10
10
All our releases are not only published as IDE extensions or plugins, but as updates to the standalone library as well. This library is published into the [Maven Central repository](https://search.maven.org/artifact/org.contextmapper/context-mapper-dsl/) and can easily be integrated into your Maven or Gradle build:
<strong>Note:</strong> This feature has been <strong>deactivated</strong> with <ahref="https://contextmapper.org/news/2023/11/24/v6.10.0-released/">release v6.10.0</a> of Context Mapper.
9
+
</div>
10
+
7
11
Context Mapper provides a generator that decomposes your domain model into Bounded Contexts in a systematic manner. The service decomposition tool is based on [Service Cutter](https://github.com/ServiceCutter/ServiceCutter/). Based on a [catalog of 16 coupling criteria](https://github.com/ServiceCutter/ServiceCutter/wiki/Coupling-Criteria) and a graph clustering algorithm, the generator suggests how an application could be decomposed into Bounded Contexts, services, or components.
8
12
9
13
Note that it is not our goal to automate the job of domain modelers and software architects! The generated decompositions are just suggestions and can give you hints how your domain objects are coupled. Don't expect that the perfect decomposition is generated for you without questioning it.
<h3class="text-center">Systematic Service Decomposition</h3>
94
-
<p>
95
-
With the <strong>Service Cutter</strong> integration you can calculate new Context Maps that shall <strong>improve coupling and cohesion</strong> by using <strong>graph clustering</strong>
96
-
algorithms and <strong>coupling criteria</strong>.
0 commit comments