Springboot(一)

传递参数注解@PathVariable,@RequestParam和RequestBody区别

Springboot(一)
(markdown引用图片方法BASE64编码)

针对一些非必填的参数,可以使用required关键字来标识,同时必须设置默认值defaultValue,如对price参数的获取:

@RequestParam(value = "price",required = false,defaultValue = "0") Integer price

拦截器设置

spring设置了拦截器,通过实现HandlerInterceptor接口转换为拦截器类,实现pre、post、after方法;其中after方法即使抛出异常也会执行,而post不会。并通过@Component注解将该类交给spring管理。

拦截器注册:在启动类中实现WebMvcConfigurer接口中的addInterceptors

    @Autowired
    private AuthFilter authFilter;//自定义拦截器
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(authFilter).addPathPatterns("/merchants/*");//定义拦截路径
    }
上一篇:node.js中对同步,异步,阻塞与非阻塞的理解


下一篇:如何使用GIT上传自己的代码到码云?