Skip to content

Commit 1c6496d

Browse files
authored
Update README.md (#35)
1 parent 338fd51 commit 1c6496d

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

todo-web-api-use-oracle-db/README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Todo Web API with Oracle Database
22

3-
This sample application demonstrates a Spring Boot REST API for managing Todo items using an Oracle database with JPA. The application showcases Oracle-specific SQL features and data types such as VARCHAR2.
4-
5-
## Features
3+
This application is developed using Spring Boot REST APIs to manage Todo items with an Oracle database integrated through JPA. It leverages Oracle-specific SQL features and data types, for instance, VARCHAR2. The goal is to migrate this application to utilize Azure Database for PostgreSQL.
64

5+
The app uses:
76
- CRUD operations for Todo items
87
- Spring Data JPA with Oracle database
98
- Custom SQL queries using Oracle-specific features
@@ -81,10 +80,10 @@ curl -X GET http://localhost:8080/api/todos
8180
curl -X POST http://localhost:8080/api/todos \
8281
-H "Content-Type: application/json" \
8382
-d '{
84-
"title": "Learn Oracle Database",
85-
"description": "Study Oracle-specific features and SQL syntax",
86-
"priority": 7,
87-
"dueDate": "2023-12-31T23:59:59"
83+
"title": "Learn GitHub Copilot App Modernzation for Java",
84+
"description": "Get started today https://aka.ms/AM4Jgetstarted",
85+
"priority": 1,
86+
"dueDate": "2025-6-18T23:59:59"
8887
}'
8988
```
9089

@@ -109,7 +108,7 @@ curl -X POST http://localhost:8080/api/todos \
109108

110109
## Oracle-Specific Features
111110

112-
This sample demonstrates several Oracle-specific features:
111+
This sample uses several Oracle-specific features:
113112

114113
1. Oracle data types (VARCHAR2)
115114
2. Oracle date functions (SYSDATE, SYSTIMESTAMP)

0 commit comments

Comments
 (0)