Fix default HandlerMappings class names in javadoc

Fixes #708
master
Xiaolong Zuo 10 years ago committed by Brian Clozel
parent e02719e5e3
commit 47b8ee891e
  1. 4
      spring-webmvc/src/main/java/org/springframework/web/servlet/HandlerMapping.java

@ -24,7 +24,7 @@ import javax.servlet.http.HttpServletRequest;
* *
* <p>This class can be implemented by application developers, although this is not * <p>This class can be implemented by application developers, although this is not
* necessary, as {@link org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping} * necessary, as {@link org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping}
* and {@link org.springframework.web.servlet.handler.SimpleUrlHandlerMapping} * and {@link org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping}
* are included in the framework. The former is the default if no * are included in the framework. The former is the default if no
* HandlerMapping bean is registered in the application context. * HandlerMapping bean is registered in the application context.
* *
@ -49,7 +49,7 @@ import javax.servlet.http.HttpServletRequest;
* @see org.springframework.core.Ordered * @see org.springframework.core.Ordered
* @see org.springframework.web.servlet.handler.AbstractHandlerMapping * @see org.springframework.web.servlet.handler.AbstractHandlerMapping
* @see org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping * @see org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping
* @see org.springframework.web.servlet.handler.SimpleUrlHandlerMapping * @see org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping
*/ */
public interface HandlerMapping { public interface HandlerMapping {

Loading…
Cancel
Save