You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
884 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 2.0//EN" "http://getahead.org/dwr/dwr20.dtd">
<dwr> <!-- 实现AJAX框架的配置信息 -->
<allow>
<create creator="new" javascript="loginService"> <!-- 指定javascript中可以访问的java类名new意味着DWR应当调用类的默认构造函数来获得实例 -->
<param name="class" value="com.itbaizhan.service.loginService"></param>
</create>
<create creator="new" javascript="cartService">
<param name="class" value="com.itbaizhan.service.cartService"></param>
</create>
<convert converter="bean" match="com.itbaizhan.orm.Tcatelog"> <!-- 设置转换器 -->
<param name="include" value="id,name"></param>
</convert>
</allow>
</dwr>