Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the state of the art tooling for Spring context analysis at runtime?

Tags:

java

spring

Assuming you have a rather big Spring application (including sources) at hand and you want to gather all kinds of information about the contexts beans at runtime : bean names, types, classes, child application contexts, property values, annotations, proxies structure etc.

What kind of tools would one use to find out ?

like image 294
Andreas Steffan Avatar asked Aug 11 '12 09:08

Andreas Steffan


1 Answers

I used to maintain https://github.com/krosenvold/spring-context-analyzer, which detects problematic scope transitions. might need some adjudtments for spring versions >3

like image 147
krosenvold Avatar answered Oct 04 '22 17:10

krosenvold