当前位置:   article > 正文

Neither PathPatterns nor String patterns condition

neither pathpatterns nor string patterns condition

RequestMappingInfo.paths(prefix).build().combine(mappingInfo);
给请求增加前缀,报错Neither PathPatterns nor String patterns condition

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
pathPatternsCondition 为null,正常应该是前缀,那么跟踪下初始化的地方。
在这里插入图片描述
this.options.patternParser 不能为空。
解决办法:

public class xxxRequestMappingHandlerMapping extends RequestMappingHandlerMapping {
    private RequestMappingInfo.BuilderConfiguration config = new RequestMappingInfo.BuilderConfiguration();
}
public xxxMethod(){
RequestMappingInfo info = super.getMappingForMethod(method, handlerType);
// ...
    if (this.config.getPatternParser() == null) {
        this.config.setPatternParser(patternParser);
    }
   info = RequestMappingInfo.paths(prefix)
      .options(this.config)
      .build()
	  .combine(info);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

代码:SpringBoot给Controller添加统一路由前缀

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/796521
推荐阅读