<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property value="true" name="alwaysUseFullPath"></property>
<property name="mappings">
<props>
<prop key="/dwr/**">dwrController</prop>
</props>
</property>
</bean>
<!--dwr控制器-->
<dwr:controller id="dwrController" debug="true"/>
<!--设置需要dwr转化的实体类,格式为json传输到jsp页面-->
<dwr:configuration>
<dwr:convert type="bean" class="com.zuifang.entity.picking.GoodsOrder"/>
</dwr:configuration>
<dwr:annotation-config />
<dwr:annotation-scan base-package="com.zuifang.web" scanDataTransferObject="true"/>