Skip to content

Commit 7cde283

Browse files
committed
Merge branch '5.1.x'
2 parents b4de384 + cc740df commit 7cde283

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ext {
3030

3131
aspectjVersion = "1.9.2"
3232
freemarkerVersion = "2.3.28"
33-
groovyVersion = "2.5.5"
33+
groovyVersion = "2.5.6"
3434
hsqldbVersion = "2.4.1"
3535
jackson2Version = "2.9.8"
3636
jettyVersion = "9.4.14.v20181114"
@@ -277,7 +277,7 @@ configure(rootProject) {
277277
testCompile("javax.servlet:javax.servlet-api:3.1.0")
278278
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
279279
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
280-
testCompile("org.hibernate:hibernate-core:5.1.16.Final")
280+
testCompile("org.hibernate:hibernate-core:5.1.17.Final")
281281
}
282282

283283
artifacts {

spring-beans/src/main/java/org/springframework/beans/factory/config/AutowireCapableBeanFactory.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ void autowireBeanProperties(Object existingBean, int autowireMode, boolean depen
289289
* Apply {@link BeanPostProcessor BeanPostProcessors} to the given existing bean
290290
* instance, invoking their {@code postProcessBeforeInitialization} methods.
291291
* The returned bean instance may be a wrapper around the original.
292-
* @param existingBean the new bean instance
292+
* @param existingBean the existing bean instance
293+
* @param beanName the name of the bean, to be passed to it if necessary
293294
* (only passed to {@link BeanPostProcessor BeanPostProcessors};
294295
* can follow the {@link #ORIGINAL_INSTANCE_SUFFIX} convention in order to
295296
* enforce the given instance to be returned, i.e. no proxies etc)
@@ -305,7 +306,8 @@ Object applyBeanPostProcessorsBeforeInitialization(Object existingBean, String b
305306
* Apply {@link BeanPostProcessor BeanPostProcessors} to the given existing bean
306307
* instance, invoking their {@code postProcessAfterInitialization} methods.
307308
* The returned bean instance may be a wrapper around the original.
308-
* @param existingBean the new bean instance
309+
* @param existingBean the existing bean instance
310+
* @param beanName the name of the bean, to be passed to it if necessary
309311
* (only passed to {@link BeanPostProcessor BeanPostProcessors};
310312
* can follow the {@link #ORIGINAL_INSTANCE_SUFFIX} convention in order to
311313
* enforce the given instance to be returned, i.e. no proxies etc)

src/docs/asciidoc/web/webmvc.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,9 @@ The following table lists the special beans detected by the `DispatcherServlet`:
221221
The mapping is based on some criteria, the details of which vary by `HandlerMapping`
222222
implementation.
223223

224-
The two main `HandlerMapping` implementations are `RequestMappingHandlerMapping`( which
225-
supports `@RequestMapping` annotated methods) and `SimpleUrlHandlerMapping` (which
226-
maintains explicit registrations of URI path patterns to handlers).
224+
The two main `HandlerMapping` implementations are `RequestMappingHandlerMapping`
225+
(which supports `@RequestMapping` annotated methods) and `SimpleUrlHandlerMapping`
226+
(which maintains explicit registrations of URI path patterns to handlers).
227227

228228
| `HandlerAdapter`
229229
| Help the `DispatcherServlet` to invoke a handler mapped to a request, regardless of

0 commit comments

Comments
 (0)