Spring的集成几乎异常简单,只需要更改配置文件而已. 页面的代码不用动,例如 doc.simple-spring.jsp web.xml applicationContext.xml
<script language=”javascript”>var springEndPoint=”<%=request.getContextPath()%>/remoting/Spring-buffalo”;function pageMethod() { var buffalo = new Buffalo(springEndPoint); buffalo.remoteCall(“yourObject.yourMethod”,[], function(reply) { var Obj = reply.getResult(); })}</script>
web部署描述文件
<?xml version=”1.0″ encoding=”UTF-8″?><!DOCTYPE web-app PUBLIC “-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN” “
以前的buffalo-service.properties文件则不用,applicationContext.xml所替代之.其中引用到的bean可以是任意被Spring托管的bean.这个Controller可以被任意任意方式的ServletDispather调用.
<beans> <bean name=”simpleService” class=”net.buffalo.demo.simple.SimpleService”></bean> <bean name=”numberService” class=”net.buffalo.demo.numberguess.NumberGuessService”></bean> </beans>
remoting-servlet.xml
<beans> <bean name=”/Spring-buffalo” class=”net.buffalo.spring.BuffaloServiceExporter”> <property name=”services”> <map> <entry key=”simpleService”> <ref bean=”simpleService”/> </entry> <entry key=”numberService”> <ref bean=”numberService”/> </entry> </map> </property> </bean> </beans>
http://www.javabc.com/
ajax与spring结合_ajax教程
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ajax与spring结合_ajax教程
相关推荐
-      Jquery处理Json字符串的实例
-      ASP+Ajax实现无刷新评论简单例子
-      AJAX的阻塞及跨域名解析
-      AJAX学习资料
-      [js]一个获取页面ip的正则
-      ajax用户注册代码
-      each循环输出jquery返回的json字符串
-      Ajax技术全解之一