Controller注解形式做Spring MVC开发

在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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值