美文网首页开发中的一些Exception
Optional int parameter 'x' is pr

Optional int parameter 'x' is pr

作者: 光影路西法 | 来源:发表于2018-05-04 18:30 被阅读0次

    在编写Feign Client调用其他微服务的时候出现这个错误:

    
    java.lang.IllegalStateException: 
    Optional int parameter 'page' is present but cannot be translated into a null value due to being declared as a primitive type. Consider declaring it as object wrapper for the corresponding primitive type.
    
    

    原因是

     @RequestParam(value ="page",required=false) int page
    

    的参数可能不传,为null。但是参数为int类型,不能赋值为null,故需要修改为Integer

     @RequestParam(value ="page",required=false) Integer page
    

    相关文章

      网友评论

        本文标题:Optional int parameter 'x' is pr

        本文链接:https://www.haomeiwen.com/subject/tzcjrftx.html