百木园-与人分享,
就是让自己快乐。

@PathVariable注解的功能说明

转自:

http://www.java265.com/JavaFramework/SpringMVC/202204/2800.html

注解的功能:

      注解(Annotation),也叫元数据。一种代码级别的说明。它是JDK1.5及以后版本引入的一个特性,与类、接口、枚举是在同一个层次。它可以声明在包、类、字段、方法、局部变量、方法参数等的前面,用来对这些元素进行说明,注释。

作用分类:
    ①编写文档:通过代码里标识的元数据生成文档【生成文档doc文档】
    ② 代码分析:通过代码里标识的元数据对代码进行分析【使用反射】
    ③编译检查:通过代码里标识的元数据让编译器能够实现基本的编译检查【Override】
下文笔者将讲述@pathVariable注解的功能简介说明,如下所示:

@pathVariable注解的功能

  @PathVariable注解简介:
     @PathVariable是spring3.0的一个新功能
     它用于接收请求路径中占位符的值

@PathVariable注解的功能

@PathVariable(\"xxx\")
通过 @PathVariable 可以将URL中占位符参数{xxx}绑定到处理器类的方法形参中@PathVariable(“xxx“) 
 
@RequestMapping(value=”user/{id}/{name}”)
请求路径:http://localhost:8080/hello/test/1/maomao

例:

package com.day01springmvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
 
/**
 * @ Author     :java265.com 
 */
@Controller
@RequestMapping(\"hello\")
public class HelloController2 {
    /**
     *3、占位符映射
     * 语法:@RequestMapping(value=”user/{userId}/{userName}”)
     * 请求路径:http://localhost:8080/hello/test/1/maomao
     * @param ids
     * @param names
     * @return
     */
    @RequestMapping(\"test/{id}/{name}\")
    public ModelAndView test5(@PathVariable(\"id\") Long ids ,@PathVariable(\"name\") String names){
        ModelAndView mv = new ModelAndView();
        mv.addObject(\"msg\",\"占位符映射:id:\"+ids+\";name:\"+names);
        mv.setViewName(\"tttttt\");
        return mv;
    }
}
 

来源:https://www.cnblogs.com/java265/p/16391803.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » @PathVariable注解的功能说明

相关推荐

  • 暂无文章