Skip to content

Commit 8006a31

Browse files
committed
Make sure people wait for the extensions to be available
1 parent 41a72b0 commit 8006a31

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

documentation/modules/ROOT/pages/06_dev-services.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ quarkus extension remove quarkus-jdbc-h2
5757
--
5858
====
5959

60-
6160
Notice in the logs how Quarkus has reloaded and started up a PostgreSQL database Dev Service:
6261

6362
[.console-output]

documentation/modules/ROOT/pages/07_spring.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ quarkus ext add spring-web spring-data-jpa
4949
[INFO] ------------------------------------------------------------------------
5050
----
5151

52+
Notice in the logs how Quarkus is reloading and the Spring compatibility extensions are now part of the `Installed features`.
53+
5254
== Create a Spring Data Repository for Fruit
5355

5456
Spring Data is one of the most popular Spring APIs, so let's create a Spring Data JPA Repository for our `Fruit` entity. Create the `SpringFruitRepository` Java class in `src/main/java` in the `com.redhat.developers` package with the following contents:

documentation/modules/ROOT/pages/08_rest-client.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ quarkus extension add rest-client-jackson
7272
[INFO] ------------------------------------------------------------------------
7373
----
7474
75+
Notice in the logs how Quarkus is reloading and the `rest-client-jackson` extension is now part of the `Installed features`.
76+
7577
== Create FruityVice POJO
7678
7779
We need to create a POJO object that is used to unmarshal a JSON message from http://fruityvice.com[window=_blank].

0 commit comments

Comments
 (0)