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
  • 549,808
  • 132
  • 1,049
  • 1,115
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
  • 690
  • 7
  • 15
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,828
  • 5
  • 17
  • 23
0

Spring Insight might do the trick.

earldouglas
  • 13,012
  • 5
  • 38
  • 49
  • 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