Polish Javadoc
This commit is contained in:
parent
f30b7e3125
commit
d3678caa37
|
|
@ -44,10 +44,9 @@ import org.springframework.core.type.filter.TypeFilter;
|
||||||
* @author Chris Beams
|
* @author Chris Beams
|
||||||
* @since 3.1
|
* @since 3.1
|
||||||
*/
|
*/
|
||||||
@Documented
|
|
||||||
@FeatureAnnotation(parser=ComponentScanAnnotationParser.class)
|
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
@Target(ElementType.TYPE)
|
@Target(ElementType.TYPE)
|
||||||
|
@Documented
|
||||||
public @interface ComponentScan {
|
public @interface ComponentScan {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -89,6 +88,7 @@ public @interface ComponentScan {
|
||||||
* necessary when using scopes in a proxy-style fashion.
|
* necessary when using scopes in a proxy-style fashion.
|
||||||
* <p>The default is defer to the default behavior of the component scanner used to
|
* <p>The default is defer to the default behavior of the component scanner used to
|
||||||
* execute the actual scan.
|
* execute the actual scan.
|
||||||
|
* <p>Note that setting this attribute overrides any value set for {@link #scopeResolver()}.
|
||||||
* @see ClassPathBeanDefinitionScanner#setScopedProxyMode(ScopedProxyMode)
|
* @see ClassPathBeanDefinitionScanner#setScopedProxyMode(ScopedProxyMode)
|
||||||
*/
|
*/
|
||||||
ScopedProxyMode scopedProxy() default ScopedProxyMode.DEFAULT;
|
ScopedProxyMode scopedProxy() default ScopedProxyMode.DEFAULT;
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ import org.springframework.context.annotation.ComponentScan.Filter;
|
||||||
import org.springframework.core.type.filter.TypeFilter;
|
import org.springframework.core.type.filter.TypeFilter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests for {@link ComponentScan} annotation.
|
* Unit tests for the @ComponentScan annotation.
|
||||||
*
|
*
|
||||||
* @author Chris Beams
|
* @author Chris Beams
|
||||||
* @since 3.1
|
* @since 3.1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue