• springMVC注解优化


    本文是本人在学习网络视频的过程中的一些总结。

    本文是对关于一些springMVC在使用注解的优化。

    使用以下的标签,会自己主动引入Annotation的配置

    <mvc:annotation-driven/>

    效果等同于在配置文件里使用以下的配置

    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"></bean>

    以以下的类为样例:

    package com.tgb.web.controller.annotation;
    
    import javax.servlet.http.HttpServletRequest;
    
    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    
    @Controller
    @RequestMapping("/user2")
    public class User2Controller {
    	
    	@RequestMapping("/addUser")
    	public String addUser(HttpServletRequest request){
    		
    		String result ="this is addUser------优化版";
    		request.setAttribute("result", result);
    		return "/jquery";
    	}
    	
    	@RequestMapping("/delUser")
    	public String delUser(HttpServletRequest request){
    		String result ="this is delUser------优化版";
    		request.setAttribute("result", result);
    		return "/jquery";
    	}
    	@RequestMapping("/toUser")
    	public String toUser(HttpServletRequest request){
    		return "/jquery";
    	}
    }

    注解
    @RequestMapping("/user2")
    使用是为了在路径中使用/user2



  • 相关阅读:
    什么是Python???
    python中闭包详解
    python类中的__init__和__new__方法
    python中不需要函数重载的原因
    装饰器详解
    IDEA中导入非maven项目(从eclipse中迁移过来的)
    CLion、cmake、mingw、openCV安装
    跨域问题的一些思考
    maven中jar包手动导入
    对于序列化的理解
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/4093296.html
Copyright © 2020-2023  润新知