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
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,8 +55,8 @@ Our issue tracker is available [here](https://github.com/spring-projects/spring-
55
55
## Database configuration
56
56
57
57
In its default configuration, Petclinic uses an in-memory database (H2) which
58
-
gets populated at startup with data. The h2 console is exposed at `http://localhost:8080/h2-console`,
59
-
and it is possible to inspect the content of the database using the `jdbc:h2:mem:<uuid>` URL. The UUID is printed at startup to the console.
58
+
is populated at startup with data. The h2 console is exposed at `http://localhost:8080/h2-console`,
59
+
and you can inspect the database contents using the `jdbc:h2:mem:<uuid>` URL. The UUID is printed at startup in the console.
60
60
61
61
A similar setup is provided for MySQL and PostgreSQL if a persistent database configuration is needed. Note that whenever the database type changes, the app needs to run with a different profile: `spring.profiles.active=mysql` for MySQL or `spring.profiles.active=postgres` for PostgreSQL. See the [Spring Boot documentation](https://docs.spring.io/spring-boot/how-to/properties-and-configuration.html#howto.properties-and-configuration.set-active-spring-profiles) for more detail on how to set the active profile.
62
62
@@ -93,7 +93,7 @@ At development time we recommend you use the test applications set up as `main()
93
93
94
94
## Compiling the CSS
95
95
96
-
There is a `petclinic.css` in `src/main/resources/static/resources/css`. It was generated from the `petclinic.scss` source, combined with the [Bootstrap](https://getbootstrap.com/) library. If you make changes to the `scss`, or upgrade Bootstrap, you will need to re-compile the CSS resources using the Maven profile "css", i.e. `./mvnw package -P css`. There is no build profile for Gradle to compile the CSS.
96
+
There is a `petclinic.css` in `src/main/resources/static/resources/css`. It was generated from the `petclinic.scss` source, combined with the [Bootstrap](https://getbootstrap.com/) library. If you make changes to the `scss`, or upgrade Bootstrap, you need to recompile the CSS resources using the Maven profile "css", i.e. `./mvnw package -P css`. There is no build profile for Gradle to compile the CSS.
97
97
98
98
## Working with Petclinic in your IDE
99
99
@@ -104,7 +104,7 @@ The following items should be installed in your system:
104
104
- Java 17 or newer (full JDK, not a JRE)
105
105
-[Git command line tool](https://help.github.com/articles/set-up-git)
106
106
- Your preferred IDE
107
-
- Eclipse with the m2e plugin. Note: when m2e is available, there is a m2 icon in `Help -> About` dialog. If m2e is
107
+
- Eclipse with the m2e plugin. Note: when m2e is available, there is an m2 icon in the`Help -> About` dialog. If m2e is
108
108
not there, follow the installation process [here](https://www.eclipse.org/m2e/)
@@ -153,7 +153,7 @@ GitHub org is the "canonical" implementation based on Spring Boot and Thymeleaf.
153
153
154
154
## Interaction with other open-source projects
155
155
156
-
One of the best parts about working on the Spring Petclinic application is that we have the opportunity to work in direct contact with many Open Source projects. We found bugs/suggested improvements on various topics such as Spring, Spring Data, Bean Validation and even Eclipse! In many cases, they've been fixed/implemented in just a few days.
156
+
One of the best parts about working on the Spring Petclinic application is that we have the opportunity to work in direct contact with many Open Source projects. We have found bugs/suggested improvements on various topics such as Spring, Spring Data, Bean Validation, and even Eclipse! In many cases, they were fixed/implemented in just a few days.
0 commit comments