Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions java/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,24 +124,21 @@ The generated project has the following folder structure:
```txt
<PROJECT-ROOT>/
├─ db/
│ └─ data-model.cds
└─ srv/
├─ cat-service.cds
├─ src/main/java/
├─ src/gen/java/
└─ node_modules/

```

The generated folders have the following content:

| Folder | Description |
| --- | --- |
| *db* | Contains content related to your database. A simple CDS domain model is located in the file _schema.cds_. |
| *srv* | Contains the CDS service definitions and Java back-end code and the sample service model _cat-service.cds_. |
| *srv/src/main/java* | Contains Java application logic. |
| *srv/src/gen/java* | Contains the compiled CDS model and generated [accessor interfaces for typed access](./cds-data#typed-access). |
| *node_modules* | Generated when starting the build, containing the dependencies for the CDS tools (unless you specify `-Dcdsdk-global` [when starting the build](#build-and-run)). |
| *db/* | Contains content related to your database. A simple CDS domain model is located there. |
| *srv/* | Contains the CDS service definitions and Java back-end code and a sample service model. It contains a Maven project. |
| *srv/src/main/java/* | Contains Java application logic. |
| *srv/src/gen/java/* | Contains the compiled CDS model and generated [accessor interfaces for typed access](./cds-data#typed-access). The directory is created once the project is built. |
| *node_modules/* | Generated when starting the build, containing the dependencies for the CDS tools (unless you specify `-Dcdsdk-global` [when starting the build](#build-and-run)). |


<!-- TODO: Where to put this to not distract the Java Developer??
Expand Down