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: about/index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ That might sound like a contradiction, but isn't: While CAP certainly gives *opi
86
86
|**Higher-level concepts and APIs** abstracting from and avoiding lock-ins to low-level platform features and protocols | All abstractions follow a glass-box pattern that allows unrestricted access to lower-level things, if required |
87
87
|**Best Practices served out of the box** with generic solutions for many recurring tasks | You can always handle things your way in [custom handlers](../guides/providing-services#custom-logic), decide whether to adopt [CQRS](./related#cqrs) or [Event Sourcing](./related#event-sourcing), for example ... while CAP simply tries to get the tedious tasks out of your way. |
88
88
|**Out-of-the-box support** for <br> **[SAP Fiori](https://developers.sap.com/topics/ui-development.html)** and **[SAP HANA](https://developers.sap.com/topics/hana.html)**| You can also choose other UI technologies, like [Vue.js](../get-started/in-a-nutshell#vue), or databases, by providing new database integrations. |
89
-
|**Dedicated tools support** provided in [SAP Business Application Studio](../tools/#bastudio), and[Visual Studio Code](../tools/#vscode) or [Eclipse](../java/getting-started#eclipse). | CAP doesn't depend on those tools. Everything in CAP can be done using the [`@sap/cds-dk`](../get-started/jumpstart) CLI and any editor or IDE of your choice. |
89
+
|**Dedicated tools support** provided in [SAP Business Application Studio](../tools/#bastudio) or[Visual Studio Code](../tools/#vscode). | CAP doesn't depend on those tools. Everything in CAP can be done using the [`@sap/cds-dk`](../get-started/jumpstart) CLI and any editor or IDE of your choice. |
Copy file name to clipboardexpand all lines: get-started/troubleshooting.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -236,7 +236,7 @@ In addition you might want to remove the H2 dependency, which is included in the
236
236
237
237
If you don't want to exclude dependencies completely, but make sure that an in-memory H2 database **isn't** used, you can disable Spring Boot's `DataSource` auto-configuration, by annotating the `Application.java` class with `@SpringBootApplication(exclude = org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.class)`. In that mode CAP Java however can still react on explicit data source configurations or database bindings.
238
238
239
-
### What to Do About Maven-Related Errors in Eclipse's Problems View? { #eclipse}
239
+
### What to Do About Maven-Related Errors in Eclipse's Problems View?
240
240
241
241
- In _Problems_ view, execute _Quick fix_ from the context menu if available. If Eclipse asks you to install additional Maven Eclipse plug-ins to overcome the error, do so.
242
242
- Errors like _'Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:exec-maven-plugin)_ can be ignored. Do so in _Problems_ view > _Quick fix_ context menu > _Mark goal as ignored in Eclipse preferences_.
Copy file name to clipboardexpand all lines: java/getting-started.md
+1-23
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ status: released
21
21
## Introduction
22
22
<!--Used as link target from Help Portal: https://help.sap.com/products/BTP/65de2977205c403bbc107264b8eccf4b/9186ed9ab00842e1a31309ff1be38792.html -->
23
23
24
-
The CAP Java SDK enables developing CAP applications in Java. While the [SAP Business Application Studio](https://help.sap.com/products/SAP%20Business%20Application%20Studio/9d1db9835307451daa8c930fbd9ab264/84be8d91b3804ab5b0581551d99ed24c.html) provides excellent support to develop CAP Java applications, you can also develop locally with your tool of choice, for example Eclipse or Visual Studio Code.
24
+
The CAP Java SDK enables developing CAP applications in Java. While the [SAP Business Application Studio](https://help.sap.com/products/SAP%20Business%20Application%20Studio/9d1db9835307451daa8c930fbd9ab264/84be8d91b3804ab5b0581551d99ed24c.html) provides excellent support to develop CAP Java applications, you can also develop locally with Visual Studio Code.
25
25
26
26
The CAP Java SDK supports lean application design by its modular architecture, that means you pick the required features and add them to your application dependencies on demand.
27
27
@@ -196,32 +196,10 @@ mvn spring-boot:run
196
196
To test whether the started application is up and running, open [http://localhost:8080](http://localhost:8080) in your browser.
197
197
:::
198
198
199
-
## Using Eclipse { #eclipse}
200
-
<!--Used as link target from Help Portal: https://help.sap.com/products/BTP/65de2977205c403bbc107264b8eccf4b/9186ed9ab00842e1a31309ff1be38792.html -->
201
-
202
-
### Install Eclipse
203
-
204
-
Install the [Eclipse IDE for Enterprise Java developers](https://www.eclipse.org/downloads/packages/release/2020-03/r/eclipse-ide-enterprise-java-developers-includes-incubating-components).
205
-
206
-
207
199
### Add *Spring Tools 4*
208
200
209
201
Install the [*Spring Tools 4*](https://spring.io/tools) Eclipse plugin, that makes development of Spring applications more convenient. From the Eclipse Marketplace (*Help > Eclipse Marketplace...*), search and install *Spring Tools 4*.
210
202
211
-
### Add the *SAP Cloud Business Application Tools for Eclipse*
212
-
213
-
Install the Eclipse plugin called _SAP Cloud Business Application Tools for Eclipse_ that supports convenient editing of CDS files.
214
-
215
-
1. In Eclipse open *Help > Install New Software...*.
216
-
217
-
1. From [SAP Development Tools > Getting Started with the Eclipse Tools for SAP Cloud Application Programming Model](https://tools.hana.ondemand.com/#cloud-eclipsecds), add the URL of the tools update site for your Eclipse release.
218
-
219
-
1. Select *SAP Cloud Business Application Tools* > *SAP Cloud Business Application Tools for Eclipse*.
220
-
221
-
1. Click *Next* and *Finish*, accept the license agreement and warning about unsigned content, restart Eclipse.
Copy file name to clipboardexpand all lines: tools/index.md
+2-10
Original file line number
Diff line number
Diff line change
@@ -263,14 +263,6 @@ The cell inputs/outputs are especially useful at later points in time when the p
263
263
264
264
> Provided that the [**CDS Editor**](#cds-editor) is installed, the CAP Notebook will be rendered automatically as the file is selected.
265
265
266
-
267
-
## Eclipse
268
-
269
-
### Prerequisites
270
-
271
-
* You have followed the instructions in [Local Setup](../get-started/jumpstart).
272
-
* You have installed Eclipse, Spring Tools, and our Eclipse plugin, see [Add the SAP Cloud Business Application Tools for Eclipse](../java/getting-started#eclipse).
273
-
274
266
<divid="beforedocker" />
275
267
276
268
## Docker
@@ -333,7 +325,7 @@ cds run
333
325
The editor powered by the CDS language server implementation, provides source code validation including diagnostics, like error messages and warnings.
334
326
335
327
The following features are available for all editors based on our language server implementation for CDS in
336
-
SAP Business Application Studio, Visual Studio Code, and Eclipse. The plugins are available for download for Visual Studio Code at [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=SAPSE.vscode-cds#overview) and for Eclipse at [SAP Development Tools](https://tools.hana.ondemand.com/#cloud-vscodecds).
328
+
SAP Business Application Studio and Visual Studio Code. The plugins are available for download for Visual Studio Code at [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=SAPSE.vscode-cds#overview).
337
329
338
330
[Short video about the **SAP CDS language support** extension for VS Code in action by DJ Adams.](https://www.youtube.com/watch?v=eY7BTzch8w0){.learn-more}
339
331
@@ -374,7 +366,7 @@ Use...
374
366
- many options, configurable using
375
367
- settings file
376
368
- command line switches
377
-
- config UI with simulation of options for VS Code and Eclipse
369
+
- config UI with simulation of options for VS Code
0 commit comments