xfire-servlet.xml 配置问题

 - <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  <import resource="classpath:org/codehaus/xfire/spring/xfire.xml" /> 
  <context:component-scan base-package="com.aisino.ws" /> 
- <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
- <property name="urlMap">
- <map>
  <entry key="/eInvWS/*" value-ref="eInvWS" /> 
  </map>
  </property>
  </bean>
  <bean id="eInvWS" class="org.codehaus.xfire.spring.remoting.XFireExporter" p:serviceFactory-ref="xfire.serviceFactory" p:xfire-ref="xfire" p:serviceBean-ref="eInvWebService" p:serviceClass="com.aisino.ws.IEInvWebService" /> 
  <bean id="eInvWebService" class="com.aisino.ws.impl.EInvWebServiceImpl" /> 
  </beans>

请教一下 这个配置是什么意思 ?

http://blog.csdn.net/yinxiangbing/article/details/73699538