0

在此处输入图像描述

2020-12-25 13:51:37.470 WARN 6770 --- [main] ConfigServletWebServerApplicationContext:在上下文初始化期间遇到异常 - 取消刷新尝试:org.springframework.beans.factory.UnsatisfiedDependencyException:创建名称为“pageableParameterBuilderPlugin”的bean时定义在类路径资源[io/github/jhipster/config/apidoc/SwaggerPluginsAutoConfiguration$SpringPagePluginConfiguration.class]:通过方法'pageableParameterBuilderPlugin'参数0表示的不满足的依赖关系;嵌套异常是 org.springframework.beans.factory.NoSuchBeanDefinitionException:没有“springfox.documentation.schema.TypeNameExtractor”类型的合格 bean 可用:预计至少有 1 个有资格作为自动装配候选者的 bean。依赖注释:{} 2020-12-25 13:51:38。


应用程序无法启动


描述:

io.github.jhipster.config.apidoc.SwaggerPluginsAutoConfiguration$SpringPagePluginConfiguration 中方法 pageableParameterBuilderPlugin 的参数 0 需要找不到类型为“springfox.documentation.schema.TypeNameExtractor”的 bean。

行动:

考虑在你的配置中定义一个“springfox.documentation.schema.TypeNameExtractor”类型的bean。


我按照说明做所有事情,但罐子不会。尝试插入不同的依赖项 https://springfox.github.io/springfox/docs/current/,但对我没有任何作用。

4

1 回答 1

0

https://www.jhipster.tech/production/#build

webpack.prod.js 或 webpack.common.js

new HtmlWebpackPlugin({
    ...
    base: '/jhipster/'
})

更新 src/main/webapp/swagger-ui/index.html

var urls = [];
axios.get("/swagger-resources").then(function (response) {
    response.data.forEach(function (resource) {
        urls.push({
                "name": resource.name,
                "url": "/jhipster" + resource.location
        });
    });
});
于 2020-12-26T23:31:58.667 回答