Clarify usage of @ImportResource in doc

See gh-8143
This commit is contained in:
Michael J. Simons 2017-01-31 09:08:19 +01:00 committed by Stephane Nicoll
parent 3e4ed59fdf
commit f50a0f9707

View File

@ -3235,7 +3235,7 @@ replacing those elements from the `web.xml` as follows:
container as if it was a `<servlet/>` and `<servlet-mapping/>` in `web.xml`.
* A `@Bean` of type `Filter` or `FilterRegistrationBean` behaves similarly (like a
`<filter/>` and `<filter-mapping/>`.
* An `ApplicationContext` in an XML file can be added to an `@Import` in your
* An `ApplicationContext` in an XML file can be added through an `@ImportResource` in your
`Application`. Or simple cases where annotation configuration is heavily used already
can be recreated in a few lines as `@Bean` definitions.