Skip to content

Commit 1d37e84

Browse files
authored
chore: changes java api port to 3001 (#611)
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent dbd7c3b commit 1d37e84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lesson_26/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ We are continuing to build atop the foundation of our library app. For this assi
3939
You can run the server using the usual `./gradlew run` command from the `api/java` directory. If you want to test that the server is running correctly, you can use `curl` like so:
4040

4141
```bash
42-
curl http://localhost:5000/items | json_pp
42+
curl http://localhost:3001/items | json_pp
4343
```
4444

4545
Alternatively, you can test the API using the tool [Postman][postman-link]. I recommend installing this tool to make it easier to test things.

lesson_26/api/java/api_app/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
server:
2-
port: 5000
2+
port: 3001
33
spring:
44
jpa:
55
database-platform: org.hibernate.community.dialect.SQLiteDialect

0 commit comments

Comments
 (0)