Thanks that was just what I was looking for
Type: Posts; User: crsslc; Keyword(s):
Thanks that was just what I was looking for
I have a webapp that defines jmx name using annotations, example
@ManagedResource(objectName="bean:name=threadPool",description="A pool of threads")
I start the webapp and jconsole and I can...
From the 6.8.1 docs:
>The Spring container instantiates and configures beans defined in your application context. It is also possible to ask a bean factory to configure a pre-existing object given...
First up thanks for not responding and making me give up and try some other approaches :)
Turns out spring has lots of integration points but allowing some external code to do dependency injection...
NOTE: I am using spring 1.2.7
To make the spring xml file easier I would like to use this syntax:
@Injection
public void setAbc(Abc abc)
{
this.abc = abc;
}