Use code includes and tabs in mvc-controller/ann.adoc
See gh-22171
This commit is contained in:
parent
8a67018e61
commit
460ffbc0f6
|
@ -20,7 +20,7 @@ Java::
|
||||||
----
|
----
|
||||||
@Configuration
|
@Configuration
|
||||||
@ComponentScan("org.example.web") // <1>
|
@ComponentScan("org.example.web") // <1>
|
||||||
public class WebConfig {
|
public class WebConfiguration {
|
||||||
|
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ Kotlin::
|
||||||
----
|
----
|
||||||
@Configuration
|
@Configuration
|
||||||
@ComponentScan("org.example.web") // <1>
|
@ComponentScan("org.example.web") // <1>
|
||||||
class WebConfig {
|
class WebConfiguration {
|
||||||
|
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,54 +12,7 @@ annotated class, indicating its role as a web component.
|
||||||
To enable auto-detection of such `@Controller` beans, you can add component scanning to
|
To enable auto-detection of such `@Controller` beans, you can add component scanning to
|
||||||
your Java configuration, as the following example shows:
|
your Java configuration, as the following example shows:
|
||||||
|
|
||||||
[tabs]
|
include-code::./WebConfiguration[tag=snippet,indent=0]
|
||||||
======
|
|
||||||
Java::
|
|
||||||
+
|
|
||||||
[source,java,indent=0,subs="verbatim,quotes",role="primary"]
|
|
||||||
----
|
|
||||||
@Configuration
|
|
||||||
@ComponentScan("org.example.web")
|
|
||||||
public class WebConfig {
|
|
||||||
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
----
|
|
||||||
|
|
||||||
Kotlin::
|
|
||||||
+
|
|
||||||
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]
|
|
||||||
----
|
|
||||||
@Configuration
|
|
||||||
@ComponentScan("org.example.web")
|
|
||||||
class WebConfig {
|
|
||||||
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
----
|
|
||||||
======
|
|
||||||
|
|
||||||
The following example shows the XML configuration equivalent of the preceding example:
|
|
||||||
|
|
||||||
[source,xml,indent=0,subs="verbatim,quotes"]
|
|
||||||
----
|
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:p="http://www.springframework.org/schema/p"
|
|
||||||
xmlns:context="http://www.springframework.org/schema/context"
|
|
||||||
xsi:schemaLocation="
|
|
||||||
http://www.springframework.org/schema/beans
|
|
||||||
https://www.springframework.org/schema/beans/spring-beans.xsd
|
|
||||||
http://www.springframework.org/schema/context
|
|
||||||
https://www.springframework.org/schema/context/spring-context.xsd">
|
|
||||||
|
|
||||||
<context:component-scan base-package="org.example.web"/>
|
|
||||||
|
|
||||||
<!-- ... -->
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
----
|
|
||||||
|
|
||||||
`@RestController` is a xref:core/beans/classpath-scanning.adoc#beans-meta-annotations[composed annotation] that is
|
`@RestController` is a xref:core/beans/classpath-scanning.adoc#beans-meta-annotations[composed annotation] that is
|
||||||
itself meta-annotated with `@Controller` and `@ResponseBody` to indicate a controller whose
|
itself meta-annotated with `@Controller` and `@ResponseBody` to indicate a controller whose
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2002-2024 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.docs.web.webmvc.mvccontroller.mvcanncontroller;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
// tag::snippet[]
|
||||||
|
@Configuration
|
||||||
|
@ComponentScan("org.example.web")
|
||||||
|
public class WebConfiguration {
|
||||||
|
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
// end::snippet[]
|
|
@ -0,0 +1,29 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2002-2024 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.docs.web.webmvc.mvccontroller.mvcanncontroller
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.ComponentScan
|
||||||
|
import org.springframework.context.annotation.Configuration
|
||||||
|
|
||||||
|
// tag::snippet[]
|
||||||
|
@Configuration
|
||||||
|
@ComponentScan("org.example.web")
|
||||||
|
class WebConfiguration {
|
||||||
|
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
// end::snippet[]
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- tag::snippet[] -->
|
||||||
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns:context="http://www.springframework.org/schema/context"
|
||||||
|
xsi:schemaLocation="
|
||||||
|
http://www.springframework.org/schema/beans
|
||||||
|
https://www.springframework.org/schema/beans/spring-beans.xsd
|
||||||
|
http://www.springframework.org/schema/context
|
||||||
|
https://www.springframework.org/schema/context/spring-context.xsd">
|
||||||
|
|
||||||
|
<context:component-scan base-package="org.example.web"/>
|
||||||
|
|
||||||
|
<!-- ... -->
|
||||||
|
|
||||||
|
</beans>
|
||||||
|
<!-- end::snippet[] -->
|
Loading…
Reference in New Issue