springMvc发布restFull风格的URL

Posted liuconglin的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springMvc发布restFull风格的URL相关的知识,希望对你有一定的参考价值。

  

package zpark.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import zpark.entity.User;

/**
 * @controller 单例
 * @Scope("prototype") 多例
 */
@Controller
@RequestMapping("/restFul")
public class RestFulController {

    /**
     * 多个参数:
     *         @PathVariable 获取{}中的值
     *      若方法参数名称和{}中变量名称不一致,需要在@PathVariable("name")指定名称。
     *     
     * @param id
     * @param name
     * http://localhost:9999/restFul/find/123/aa
     */
    
    @RequestMapping(value="/find/{myId}/{name}",method=RequestMethod.GET)
    public String test(@PathVariable(value="myId") Integer id,@PathVariable String name){
        System.out.println(id);
        System.out.println(name);
        return  "index";
    }
    
    /**
     * 一个参数
     * @param id
     * @param name
     * http://localhost:9999/restFul/json/123
     */
    @RequestMapping(value="/json/{id}")
    public String test1(@PathVariable Integer id, String name){
        System.out.println(id);
        System.out.println(name);
        return  "index";
    }
    
    
}

 

以上是关于springMvc发布restFull风格的URL的主要内容,如果未能解决你的问题,请参考以下文章

SpringMVC学习五(resultful风格/异常处理/注解)

restfull软件架构风格

Django restfull规范

webservice--cxf和spring结合,发布restFull风格的服务

restfull和传统http的区别

SpringMvc入门四----rest风格Url