Spring MVC搭建REST风格网站

REST是表述性状态转移的意思。REST核心是以资源为中心。

比如,URI是统一资源标识符,URL是一种URI,称为统一资源定位符。现在很多网站设计的URL,没有以资源为中心,没有体现URI的标识本质。比如,有一个URL:/user?id=1&name=lcl ,其中id参数是用来定位一个“id=1的用户”,这就有悖于URI的本质,既然URI本身可以标识一个资源,那么就不应该借助额外参数来标识这个资源,所以这是一个非REST风格的URL。

REST提倡让URI回归资源表述的本质。所以上面的URL可以改成:/user/1?name=lcl

Controller:

package com.huanle.controller;

import java.net.BindException;

import javax.servlet.http.HttpServletResponse;

import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.ResponseStatus;

import com.huanle.model.User;

@Controller
@RequestMapping("/user")
public class UserController {

    @RequestMapping( path= "/{id}" , method = RequestMethod.GET)
    public String getUser(@PathVariable long id){
        return "user";
    }

    @RequestMapping( path= "/{id}" , method = RequestMethod.PUT)
    @ResponseStatus( HttpStatus.NO_CONTENT )
    public void putUser(@PathVariable long id){
        //TODO:save user
    }


    @RequestMapping( path= "/{id}" , method = RequestMethod.DELETE)
    @ResponseStatus( HttpStatus.NO_CONTENT )
    public void deleteUser(@PathVariable long id){
        //TODO:delete user
    }

    @RequestMapping(method = RequestMethod.POST)
    @ResponseStatus( HttpStatus.CREATED )
    public void addUser(@Validated User user,
            BindingResult result,
            HttpServletResponse response) throws BindException{

        if(result.hasErrors()){
            throw new BindException();
        }

        //TODO: save
        user.setName("lcl");

        response.setHeader("Location", "/user/"+user.getId());
    }

}

  1. 参考《spring 实战》 278页
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值