Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
26.8. Spring Application Context as a Seam Component
Although it is possible to use the Spring
ContextLoaderListener
to start your application's Spring ApplicationContext
, there are some limitations: the Spring ApplicationContext
must be started after the SeamListener
, and starting a Spring ApplicationContext
for use in Seam unit and integration tests can be complicated.
To overcome these limitations, the Spring integration includes a Seam component that can start a Spring
ApplicationContext
. To use this component, place the <spring:context-loader/>
definition in the components.xml
file. Specify your Spring context file location in the config-locations
attribute. If more than one configuration file is required, you can place them in the nested <spring:config-locations/>
element, as per standard components.xml
multi-value practices.