0

Is there a way to expose my Spring applicationContext via a servlet or webapp so that I can manipulate and inspect the beans in the appcontext.

Pascal Thivent
  • 562,542
  • 136
  • 1,062
  • 1,124
Mathew
  • 1
  • 1

3 Answers3

2

You may want to have a look at the Spring Inspector a plug-gable component that provides programmatic access to any Spring based application at run-time. You can use Javascript to change configurations or manage the application behavior at run-time.

Julio
  • 720
  • 7
  • 16
0

Not aware of a special tool/plug-in. Maybe this would do:

How can I determine Objects in application context?

Community
  • 1
  • 1
del.ave
  • 1,888
  • 5
  • 17
  • 23
0

Spring Insight might do the trick.

earldouglas
  • 13,265
  • 5
  • 41
  • 50
  • Its a start. I don't need to debug the appcontext. I need to manipulate it. i.e turn services off and on without doing a restart. – Mathew Aug 03 '10 at 22:16