|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.context.support.SpringBeanAutowiringSupport
public abstract class SpringBeanAutowiringSupport
Convenient base class for self-autowiring classes that gets constructed
within a Spring-based web application. Resolves @Autowired
annotations in the endpoint class against beans in the current Spring
root web application context (as determined by the current thread's
context ClassLoader, which needs to be the web application's ClassLoader).
Can alternatively be used as a delegate instead of as a base class.
A typical usage of this base class is a JAX-WS endpoint class:
Such a Spring-based JAX-WS endpoint implementation will follow the
standard JAX-WS contract for endpoint classes but will be 'thin'
in that it delegates the actual work to one or more Spring-managed
service beans - typically obtained using @Autowired
.
The lifecycle of such an endpoint instance will be managed by the
JAX-WS runtime, hence the need for this base class to provide
@Autowired
processing based on the current Spring context.
NOTE: If there is an explicit way to access the ServletContext,
prefer such a way over using this class. The WebApplicationContextUtils
class allows for easy access to the Spring root web application context
based on the ServletContext.
WebApplicationObjectSupport
Constructor Summary | |
---|---|
SpringBeanAutowiringSupport()
This constructor performs injection on this instance, based on the current web application context. |
Method Summary | |
---|---|
static void |
processInjectionBasedOnCurrentContext(Object target)
Process @Autowired injection for the given target object,
based on the current web application context. |
static void |
processInjectionBasedOnServletContext(Object target,
ServletContext servletContext)
Process @Autowired injection for the given target object,
based on the current root web application context as stored in the ServletContext. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SpringBeanAutowiringSupport()
Intended for use as a base class.
processInjectionBasedOnCurrentContext(java.lang.Object)
Method Detail |
---|
public static void processInjectionBasedOnCurrentContext(Object target)
@Autowired
injection for the given target object,
based on the current web application context.
Intended for use as a delegate.
target
- the target object to processContextLoader.getCurrentWebApplicationContext()
public static void processInjectionBasedOnServletContext(Object target, ServletContext servletContext)
@Autowired
injection for the given target object,
based on the current root web application context as stored in the ServletContext.
Intended for use as a delegate.
target
- the target object to processservletContext
- the ServletContext to find the Spring web application context inWebApplicationContextUtils.getWebApplicationContext(javax.servlet.ServletContext)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |