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: spring-data-jdbc/README.adoc
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -23,11 +23,11 @@ If you are new to Spring Data JDBC read the following two articles https://sprin
23
23
There are also examples in the https://github.com/spring-projects/spring-data-examples/tree/master/jdbc[Spring Data Examples] project.
24
24
25
25
A very good source of information is the source code in this repository.
26
-
Especially the integration tests (if you are reading this on github, type `t` and then `IntegrationTests.java`)
26
+
Especially the integration tests (if you are reading this on GitHub, type `t` and then `IntegrationTests.java`)
27
27
28
-
We are keeping an eye on the (soon to be created) https://stackoverflow.com/questions/tagged/spring-data-jdbc[spring-data-jdbc tag on stackoverflow].
28
+
We are keeping an eye on the https://stackoverflow.com/questions/tagged/spring-data-jdbc[spring-data-jdbc tag on Stack Overflow].
29
29
30
-
If you think you found a bug, or have a feature request please https://github.com/spring-projects/spring-data-jdbc/issues[create a ticket in our issue tracker].
30
+
If you think you found a bug, or have a feature request, please https://github.com/spring-projects/spring-data-jdbc/issues[create a ticket in our issue tracker].
31
31
32
32
== Execute Tests
33
33
@@ -44,7 +44,7 @@ This will execute unit tests and integration tests using an in-memory database.
44
44
45
45
=== Running tests with a real database
46
46
47
-
In order to run the integration tests against a specific database you need to have a local Docker installation available, and then execute.
47
+
In order to run the integration tests against a specific database, you need to have a local Docker installation available, and then execute.
48
48
49
49
[source]
50
50
----
@@ -53,16 +53,16 @@ mvn test -Dspring.profiles.active=<databasetype>
53
53
54
54
This will also execute the unit tests.
55
55
56
-
Currently the following _databasetypes_ are available:
56
+
Currently, the following _databasetypes_ are available:
57
57
58
58
* hsql (default, does not require a running database)
59
59
* mysql
60
60
* postgres
61
61
* mariadb
62
62
* mssql
63
63
64
-
Testing with Microsoft SQL Server requires you to accept the EULA of the Microsoft SQL Server Docker image, so the build may download and run it for you.
65
-
In order to accept the EULA please add a file named `container-license-acceptance.txt` to the classpath, i.e. `src/test/resources` with the content:
64
+
Testing with Microsoft SQL Server requires you to accept the EULA of the Microsoft SQL Server Docker image so that the build may download and run it for you.
65
+
In order to accept the EULA, please add a file named `container-license-acceptance.txt` to the classpath, i.e. `src/test/resources` with the content:
This will execute the unit tests, and all the integration tests with all the databases we currently support for testing. Running the integration-tests depends on Docker.
78
+
This will execute the unit tests and all the integration tests with all the databases we currently support for testing. Running the integration-tests depends on Docker.
0 commit comments