Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you were going to access your client you could now simply pull it out of the Spring context (or better yet, inject it into your application using Spring!):

Code Block
java
java
 
ApplicationContext context = ...; // your Spring ApplicationContext
HelloWorld client = (HelloWorld) context.getBean("client");

...