Use code includes and tabs in mvc-controller/ann.adoc

See gh-22171
This commit is contained in:
Sébastien Deleuze
2024-03-12 19:18:42 +01:00
parent 8a67018e61
commit 460ffbc0f6
5 changed files with 78 additions and 50 deletions

View File

@@ -20,7 +20,7 @@ Java::
----
@Configuration
@ComponentScan("org.example.web") // <1>
public class WebConfig {
public class WebConfiguration {
// ...
}
@@ -33,7 +33,7 @@ Kotlin::
----
@Configuration
@ComponentScan("org.example.web") // <1>
class WebConfig {
class WebConfiguration {
// ...
}