From 9de234f9135cc1a7a85eb5cd86271a2ab4ff66d9 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 21 Mar 2022 14:35:37 +0100 Subject: [PATCH] Fix asciidoc include and anchor --- .../spring-boot-docs/src/docs/asciidoc/data/sql.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc index a2462ad376f..80ebc5a2774 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc @@ -351,7 +351,7 @@ In simple setups, a `SecurityFilterChain` like the following can be used: [source,java,indent=0,subs="verbatim"] ---- -include::{docs-java}/features/sql/h2webconsole/springsecurity/DevProfileSecurityConfiguration.java[] +include::{docs-java}/data/sql/h2webconsole/springsecurity/DevProfileSecurityConfiguration.java[] ---- WARNING: The H2 console is only intended for use during development. @@ -361,7 +361,7 @@ TIP: `PathRequest.toH2Console()` returns the correct request matcher also when t -[[features.sql.jooq]] +[[data.sql.jooq]] === Using jOOQ jOOQ Object Oriented Querying (https://www.jooq.org/[jOOQ]) is a popular product from https://www.datageekery.com/[Data Geekery] which generates Java code from your database and lets you build type-safe SQL queries through its fluent API. Both the commercial and open source editions can be used with Spring Boot.