-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LogbookAutoConfiguration require javax.servlet.Filter result #157
Comments
Thank you |
@wyzssw I just released 1.2.3 to central. Can you take a look and verify that it works for you? |
Amazing!, it works for me,thanks . As a user, i want to print HttpClient request in CURL format which can easy to test by just execute at command line terminal, is this feature in your future plan? |
We don't have it on the roadmap but it feels like it could be an interesting addition. Can you create an issue for it? |
@whiskeysierra DONE |
Looks like this still occurs @whiskeysierra . I'm trying to use plugins {
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
// ...
ext {
set('springCloudVersion', "Hoxton.SR4")
}
// ...
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
implementation 'org.zalando:logbook-spring-boot-starter:2.1.0'
implementation 'org.zalando:logbook-okhttp:2.1.0'
implementation("io.github.openfeign:feign-okhttp:11.0")
// ...
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
I decided to add comment to this old issue. Should I open a new one? |
should i include logbook-servlet?which need by logbook-spring-boot-starter,SO my application must WEB application EVEN if only use HttpClient
The text was updated successfully, but these errors were encountered: