在springMVC-servlet.xml中取消映射处理器
添加注解驱动和扫描器
<!-- 注解驱动 -->
<mvc:annotation-driven/>
<!-- 扫描器 (ps:如果有了扫描器,可以不加注解驱动) -->
<!-- base-package属性是指明Controller在哪个包中 -->
<context:component-scan base-package="controller"></context:component-scan>
在Controller部分后台
//@Controller注解表示此类为Controller类
//RequestMapping("")用来设置访问路径
//类前与方法前均可设置@RequestMapping("")
@Controller
@RequestMapping("One")
public class Contro {
//RequestMapping("")用来设置访问路径
@RequestMapping("Two")
public String Two(){
return "index.jsp";
}
}
//访问Two()方法的URL路径为: ...../One/Two