swagger 无法关闭

Blade 未结 1 16

一、该问题的重现步骤是什么?

1.  安装咱论坛的  swagger.enabled 设置为false 来关闭swagger功能

2. image.png

3.


二、你期待的结果是什么?实际看到的又是什么?

设置 swagger.enabled 设置为false ,项目启不起来出现


2024-11-22 08:50:04.237 DEBUG 9560 --- [           main] o.f.common.engine.impl.db.DbSqlSession   : Flushing dbSqlSession

2024-11-22 08:50:04.237 DEBUG 9560 --- [           main] o.f.common.engine.impl.db.DbSqlSession   : flush summary: 0 insert, 0 update, 0 delete.

2024-11-22 08:50:04.237 DEBUG 9560 --- [           main] o.f.common.engine.impl.db.DbSqlSession   : now executing flush...

2024-11-22 08:50:04.237 DEBUG 9560 --- [           main] o.a.i.t.managed.ManagedTransaction       : Closing JDBC Connection [Transaction-aware proxy for target Connection [ConnectionProxyImpl{connectedTime=2024-11-22 08:49:37.56, closeCount=0, lastValidateTimeMillis=2024-11-22 08:49:37.562}]]

2024-11-22 08:50:04.242 DEBUG 9560 --- [           main] o.f.c.e.impl.interceptor.LogInterceptor  : --- ClearProcessInstanceLockTimesCmd finished --------------------------------------------------------

2024-11-22 08:50:04.243 DEBUG 9560 --- [           main] o.f.c.e.impl.interceptor.LogInterceptor  : --- starting SchemaOperationProcessEngineClose --------------------------------------------------------

2024-11-22 08:50:04.243 DEBUG 9560 --- [           main] o.f.c.s.SpringTransactionInterceptor     : Running command with propagation REQUIRED

2024-11-22 08:50:04.245 DEBUG 9560 --- [           main] o.f.c.engine.impl.agenda.AbstractAgenda  : Operation class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda

2024-11-22 08:50:04.245 DEBUG 9560 --- [           main] o.f.e.impl.interceptor.CommandInvoker    : Executing operation class org.flowable.engine.impl.interceptor.CommandInvoker$1

2024-11-22 08:50:04.251 DEBUG 9560 --- [           main] o.f.c.e.impl.interceptor.LogInterceptor  : --- SchemaOperationProcessEngineClose finished --------------------------------------------------------

2024-11-22 08:50:04.260  INFO 9560 --- [           main] com.alibaba.druid.pool.DruidDataSource   : {dataSource-1} closing ...

2024-11-22 08:50:04.270  INFO 9560 --- [           main] com.alibaba.druid.pool.DruidDataSource   : {dataSource-1} closed

2024-11-22 08:50:04.281  INFO 9560 --- [           main] ConditionEvaluationReportLoggingListener : 


Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.

2024-11-22 08:50:04.327 ERROR 9560 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 


image.png


三、你正在使用的是什么产品,什么版本?在什么操作系统上?

单体版 3.4.0.RELEASE

四、请提供详细的错误堆栈信息,这很重要。


五、若有更多详细信息,请在下面提供。

另外项目的 这个配置好像没有使用image.png

1条回答
  • swagger是在prod环境下自动关闭的,不需要做额外配置


    如果不行的话,按照这样试试看,你看到的配置是基于4.x的,和3.x的配置不一样

    props.setProperty("knife4j.enable", "true");
    props.setProperty("knife4j.production", "true");
    props.setProperty("swagger.enabled", "false");



    0 讨论(0)
提交回复