File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
examples/spring-boot-demo/requirements Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ Based on the Gherkin scenarios from `US-001-film-query.feature`:
192192- ** Technical flow respects sequence diagram interactions** from UML design
193193- ** JaCoCo enforces 80% minimum code coverage** as quality gate
194194- ** TestContainers provide isolated testing environment** for database integration tests
195- - ** Database:** Using Sakila PostgreSQL database with Docker: ` docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "frantiseks /postgres-sakila " `
195+ - ** Database:** Using Sakila PostgreSQL database with Docker: ` docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "sakiladb /postgres" `
196196- ** Build command:** ` ./mvnw clean verify ` to run all tests with coverage validation
197197
198198---
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ WHERE title LIKE 'A%'
8989- ** Expected Result Count** : 46 films
9090- ** Docker Command** :
9191``` bash
92- docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d " frantiseks /postgres-sakila "
92+ docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d " sakiladb /postgres"
9393```
9494
9595## Implementation Technologies
Original file line number Diff line number Diff line change @@ -11,11 +11,8 @@ WHERE title LIKE 'A%'
1111** Note:** The query returns 46 rows.
1212
1313``` bash
14- docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d " frantiseks/postgres-sakila"
15- mvn spring-boot:run -pl spring-boot-jdbc
16- mvn spring-boot:run -pl spring-boot-jooq
17- mvn spring-boot:run -pl spring-data-jdbc
18- mvn spring-boot:run -pl spring-data-jpa
14+ docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d " sakiladb/postgres"
15+ ./mvnw spring-boot:run
1916curl http://localhost:8080/api/v1/films
2017docker stop sakiladb
2118```
You can’t perform that action at this time.
0 commit comments