We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1107af commit abc8058Copy full SHA for abc8058
1 file changed
spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/EmbeddedDatabaseBuilder.java
@@ -30,14 +30,15 @@
30
* <h3>Usage Example</h3>
31
* <pre class="code">
32
* EmbeddedDatabase db = new EmbeddedDatabaseBuilder()
33
+ * .generateUniqueName(true)
34
* .setType(H2)
35
* .setScriptEncoding("UTF-8")
36
* .ignoreFailedDrops(true)
37
* .addScript("schema.sql")
38
* .addScripts("user_data.sql", "country_data.sql")
39
* .build();
40
*
- * // ...
41
+ * // perform actions against the db (EmbeddedDatabase extends javax.sql.DataSource)
42
43
* db.shutdown();
44
* </pre>
0 commit comments