How do I add WireDoctor to my Spring Boot app? #24
Answered
by
ddsha441981
ddsha441981
asked this question in
Q&A
|
I want to try WireDoctor on my Spring Boot service. What do I need to add and where do the reports show up? |
Answered by
ddsha441981
Jul 29, 2026
Replies: 1 comment
|
One dependency — that's it. No agent, no dashboard server, no code changes. Maven: <dependency>
<groupId>io.github.ddsha441981</groupId>
<artifactId>wiredoctor-autoconfigure</artifactId>
<version>0.9.0</version>
</dependency>Gradle: implementation 'io.github.ddsha441981:wiredoctor-autoconfigure:0.9.0'On startup WireDoctor hooks into the resolved
Output location is configurable via |
0 replies
Answer selected by
ddsha441981
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
One dependency — that's it. No agent, no dashboard server, no code changes.
Maven:
Gradle:
implementation 'io.github.ddsha441981:wiredoctor-autoconfigure:0.9.0'On startup WireDoctor hooks into the resolved
ApplicationContextand writes to your project root:wiredoctor-report.html— self-contained interactive console (tabs: Overview / Graph / Ghosts / Smells / Timing / Conditions), renders fully offlinewiredoctor-report.json— the same data as machine-readable source of truth/…