springboot启动报错Logbook

springboot启动报错


APPLICATION FAILED TO START


Description:
Field logbookHttpRequestInterceptor in com.jiujiu.house.api.config.HttpClientAutoConfiguration required a bean of type ‘org.zalando.logbook.httpclient.LogbookHttpRequestInterceptor’ that could not be found.
Action:
Consider defining a bean of type ‘org.zalando.logbook.httpclient.LogbookHttpRequestInterceptor’ in your configuration.
Process finished with exit code 1
原因是pom没引logbook


                      1.3.0 


 
                org.zalando
                logbook-core
                ${logbook.version}
    
    
                org.zalando
                logbook-servlet
                ${logbook.version}
  
            
                org.zalando
                logbook-httpclient
                ${logbook.version}
  
            
                org.zalando
                logbook-spring-boot-starter
                ${logbook.version}
  

你可能感兴趣的:(springboot启动报错Logbook)