SpringMvc-01

1、需要的jar包:

commons-logging-1.1.3.jar 

spring-aop-4.0.0.RELEASE.jar

spring-beans-4.0.0.RELEASE.jar

spring-context-4.0.0.RELEASE.jar

spring-core-4.0.0.RELEASE.jar

spring-expression-4.0.0.RELEASE.jar

spring-web-4.0.0.RELEASE.jar

spring-webmvc-4.0.0.RELEASE.jar

2、在控制器的类定义及方法定义处都可标注

@RequestMapping

类定义处:提供初步的请求映射信息。相对于 WEB 应用的根目录

方法处:提供进一步的细分映射信息。相对于类定义处的 URL。若类定义处未标注 @RequestMapping,则方法处标记的 URL 相对于WEB应用的根目录

  

原文地址:https://www.cnblogs.com/lanseweilai/p/4937592.html