e.struts2-conversation.struts2-conversation-scope-plugin.1.7.3.source-code.conversationContext.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of struts2-conversation-scope-plugin Show documentation
Show all versions of struts2-conversation-scope-plugin Show documentation
A Struts2 plugin for leveraging conversation scopes in Struts2
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean class="org.springframework.beans.factory.config.CustomScopeConfigurer"> <property name="scopes"> <map> <entry key="conversation"> <bean class="com.google.code.rees.scope.spring.ConversationScope" /> </entry> </map> </property> </bean> <bean id="conversationArbitrator" class="com.google.code.rees.scope.spring.SpringConversationArbitrator" /> <bean id="conversationConfigurationProvider" class="com.google.code.rees.scope.conversation.configuration.DefaultConversationConfigurationProvider"> <property name="arbitrator" ref="conversationArbitrator" /> </bean> <bean id="conversationProcessor" class="com.google.code.rees.scope.conversation.processing.SimpleConversationProcessor"> <property name="configurationProvider" ref="conversationConfigurationProvider" /> </bean> <bean id="conversationContextManagerProvider" class="com.google.code.rees.scope.conversation.context.DefaultHttpConversationContextManagerProvider" /> <bean id="requestDataValueProcessor" class="com.google.code.rees.scope.spring.ConversationRequestDataValueProcessor" /> </beans>