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
This provides an example REST backend built in Java using `Spring Boot` for use with the [Getting Started with Astra UI](https://github.com/DataStax-Examples/getting-started-with-astra-ui).
@@ -10,7 +10,7 @@ This provides an example REST backend built in Java using `Spring Boot` for use
10
10
11
11
12
12
## Objectives
13
-
* How to connect to Astra via the Secure Connect Bundle
13
+
* How to connect to Astra DB via the Secure Connect Bundle
14
14
* How to manage a Cassandra Session within a JAVA web application
15
15
16
16
## How this Works
@@ -68,9 +68,9 @@ Let's do some initial setup by creating a serverless(!) database.
68
68
### Running on your local machine
69
69
Make sure that you have:
70
70
* Java 11+
71
-
* An Astra compatible Java driver, instructions may be found [here](https://docs.datastax.com/en/astra/aws/doc/dscloud/astra/dscloudConnectJavaDriver.html) to install this locally.
71
+
* An Astra DB compatible Java driver, instructions may be found [here](https://docs.datastax.com/en/astra/aws/doc/dscloud/astra/dscloudConnectJavaDriver.html) to install this locally.
72
72
* An Astra database with the CQL schema located in [schema.cql](src/main/resources/schema.cql) already added.
73
-
* The username, password, keyspace name, and secure connect bundle downloaded from your Astra Database. For information on how to obtain these credentials please read the documentation found [here](https://docs.datastax.com/en/astra/aws/doc/dscloud/astra/dscloudObtainingCredentials.html).
73
+
* The username, password, keyspace name, and secure connect bundle downloaded from your Astra DB. For information on how to obtain these credentials please read the documentation found [here](https://docs.datastax.com/en/astra/aws/doc/dscloud/astra/dscloudObtainingCredentials.html).
74
74
75
75
This application is a Spring Boot web application. This sample can be run from the root directory using:
76
76
```sh
@@ -97,5 +97,5 @@ To setup the UI to connect to Java backend define a `.env` file in the `getting-
97
97
```sh
98
98
BASE_ADDRESS=http://localhost:8080/api
99
99
```
100
-
Once you start that project with a `npm run build` it will point the UI to the backend API which will then be using Astra as a database. When you first connect to the UI, a dialog box will open asking for Astra connection information.
100
+
Once you start that project with a `npm run build` it will point the UI to the backend API which will then be using Astra DB as a database. When you first connect to the UI, a dialog box will open asking for Astra DB connection information.
0 commit comments