hailor

Grails and DWR

     前段时间学过一点DWR,现在在学Grails,觉得还挺好用的,于是就想着有没有办法将这两个好东西用到一起来,看了Grails的文档,发现里面有这个plugin,grails的wiki里面也有介绍如何使用.
我就照着wiki上面说的一做,发现我一输grails install-plugin dwr 出了一段输出后就没有下文了

Microsoft Windows XP [版本 5.1.2600]               
(C) 版权所有 1985-2001 Microsoft Corp.           

C:\Documents and Settings\hailor>cd /d D:\grails      

D:\grails>cd dwrdemo                                              

D:\grails\dwrdemo>grails install-plugin dwr              

Welcome to Grails 1.0-RC2 - http://grails.org/            
Licensed under Apache Standard License 2.0                  
Grails home is set to: C:\grails                                

Base Directory: D:\grails\dwrdemo                              
Environment set to development
Running script C:\grails\scripts\InstallPlugin.groovy           
Plugins list cache does not exist or is broken, recreating ...
Plugins list cache has expired. Updating, please wait... ... 

上面还有一个Demo,不过这个demo下载得还真是够郁闷的,下了半天才下过来,不过下过来了也要安装dwr plugin才能用.后来经过一番探索,终于找到了正确的方法:

1,从这个网站下载那个grails-dwr-0.1.zip
2,切换你的程序目录下输入 grails install-plugin XXXXX\grails-dwr-0.1.zip   前面的XXXXXX表示你放包的目录
3,现在你的dwr plugin 安装好了
4,打开 \grails-app\conf下的BootStrap.groovy 改为(看了那个wiki,这段程序的意思也就很明了了,不同的是wiki里面的文件是DwrConfigBootStrap.groovy,不过其实没什么两样 )
 

class BootStrap {

     def init 
= { servletContext ->
     }

     def destroy 
= {
     }

     def dwrconfig
={
     service(name:
'helloService', javascript:'HelloService'{
            include(
'hello')
        }

     }

}
 

5,创建一个helloService  grails create-service hello

class HelloService {
    
    
boolean transactional = true

    def hello() {
      
"hill is here"
    }
}


6,运行 grails run-app
7,输入这个http://localhost:8080/dwrdemo/dwr查看(没错的话应该会看一个HelloService);

posted on 2007-12-29 14:37 hailor 阅读(445) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航:
 

导航

<2024年12月>
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234

统计

常用链接

留言簿(1)

随笔档案

文章档案

搜索

最新评论

阅读排行榜

评论排行榜