使用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看不出效果)):