fix 修复 openapi结构体 因springdoc缓存导致多次拼接接口路径问题
parent
a9d589167d
commit
6416016024
|
|
@ -0,0 +1,15 @@
|
||||||
|
package com.ruoyi.common.doc.config;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.models.Paths;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单独使用一个类便于判断 解决springdoc路径拼接重复问题
|
||||||
|
*
|
||||||
|
* @author Lion Li
|
||||||
|
*/
|
||||||
|
public class PlusPaths extends Paths {
|
||||||
|
|
||||||
|
public PlusPaths() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -110,7 +110,10 @@ public class SwaggerAutoConfiguration {
|
||||||
// 对所有路径增加前置上下文路径
|
// 对所有路径增加前置上下文路径
|
||||||
return openApi -> {
|
return openApi -> {
|
||||||
Paths oldPaths = openApi.getPaths();
|
Paths oldPaths = openApi.getPaths();
|
||||||
Paths newPaths = new Paths();
|
if (oldPaths instanceof PlusPaths) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
PlusPaths newPaths = new PlusPaths();
|
||||||
oldPaths.forEach((k,v) -> newPaths.addPathItem(finalContextPath + k, v));
|
oldPaths.forEach((k,v) -> newPaths.addPathItem(finalContextPath + k, v));
|
||||||
openApi.setPaths(newPaths);
|
openApi.setPaths(newPaths);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue