user710818
user710818

Reputation: 24288

Java Spring check in Eclipse

I need to check how works spring web application. I think to set breakpoints in constructors of all beans. In this way I suppose can receive perception which bean created, order of creation, links between beans. Is this way correct? Thanks

Upvotes: 1

Views: 117

Answers (1)

jiggy
jiggy

Reputation: 3836

You can download STS which is a fork of Eclipse produced by SpringSource. I think you can also just add an STS plugin to a regular Eclipse install. It has a "spring explorer" view that lets you browse the bean config, even if they are wired via annotations.

Upvotes: 4

Related Questions