Browse Source

Merge branch '5.3.x'

pull/27735/head
Stephane Nicoll 4 years ago
parent
commit
51ecbdecd8
  1. 5
      spring-context/src/main/java/org/springframework/context/annotation/AnnotationBeanNameGenerator.java

5
spring-context/src/main/java/org/springframework/context/annotation/AnnotationBeanNameGenerator.java

@ -47,10 +47,11 @@ import org.springframework.util.StringUtils;
* *
* <p>If the annotation's value doesn't indicate a bean name, an appropriate * <p>If the annotation's value doesn't indicate a bean name, an appropriate
* name will be built based on the short name of the class (with the first * name will be built based on the short name of the class (with the first
* letter lower-cased). For example: * letter lower-cased), unless the two first letters are uppercase. For example:
* *
* <pre class="code">com.xyz.FooServiceImpl -&gt; fooServiceImpl</pre> * <pre class="code">com.xyz.FooServiceImpl -&gt; fooServiceImpl</pre>
* * <pre class="code">com.xyz.URLFooServiceImpl -&gt; URLFooServiceImpl</pre>
*
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Mark Fisher * @author Mark Fisher
* @since 2.5 * @since 2.5

Loading…
Cancel
Save