SpringMVC---RESTful风格简化开发

使用springmvc大大简化了servlet的开发,但是对于传统的springmvc仍然有简化的空间,使用RESTful风格可以对mvc进行进一步简化。

项目具体如下(没提到则没用到):

第一步编写servlet容器类:

package com.wxy.config;


import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
import org.springframework.web.filter.CharacterEncodingFilter;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;
import org.springframework.web.servlet.support.AbstractDispatcherServletInitializer;

import javax.servlet.Filter;

public class ServletContainersInitConfig extends AbstractAnnotationConfigDispatcherServletInitializer{

    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class[0];
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        return new Class[]{SpringMvcConfig.class};
    }

    @Override
    protected String[] getServletMappings() {
        return new String[]{"/"};
    }
    //乱码处理

    @Override
    protected Filter[] getServletFilters() {
        CharacterEncodingFilter filter = new CharacterEncodingFilter();
        filter.setEncoding("UTF-8");
        return new Filter[]{filter};
    }
}

第二步:编写springmvc的配置:

package com.wxy.config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;


@Configuration
@ComponentScan("com.wxy.controller")
@EnableWebMvc
public class SpringMvcConfig {
}

第三步:编写User的controller类:

以下依次编写post请求,delete请求,put请求,get请求,通过一样的路径,但是通过不同的方法来区分各种请求,不仅能更好地处理路径泛滥问题,还能减少代码的复用,而且代码也更加简单明了。

package com.wxy.controller;

import com.wxy.domain.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;

@RestController
@RequestMapping("/brand")
public class UserController {
    @PostMapping
    String post(User user){
        System.out.println(user);
        return "{status:ok}";
    }
    @DeleteMapping("/{id}")
    int delete(@PathVariable Integer id){
        System.out.println(id);
        return id;
    }
    @PutMapping
    User put(@RequestBody User user){
        System.out.println(user);
        return user;
    }
    @GetMapping
    void get(){
        System.out.println("It's getting now!");
    }
}

使用postman软件进行模拟请求,效果如下:

POST:

DELETE: 

 PUT:

 GET(后台打印的数据(it's getting now,由于没有返回值,postman看不出效果)):

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值