2

我为我的项目尝试了以下设置,以使用 Events-push 插件http://grails.org/plugin/events-push向 UI 发送通知

main.gsp
----------
<html>
  <head>
    <r:require modules="grailsEvents"/>
    <r:script>
        grailsEvents.on('myTestEvent', function (data) {
            alert ("Testing data recieved : "+data)
        }, {});
    </r:script>
   </head>
</html>


MyTestController.groovy
------------------------
def testMyEvent() {
 event for:'myApp' topic:'myTestEvent' data:"Testing something"
}


BuildConfig.groovy
------------------

plugins {
    build ':platform-core:1.0.RC5'
    build ':events-push:1.0.M7'
    compile ':platform-core:1.0.RC5'
    runtime ':platform-core:1.0.RC5'
    compile ':events-push:1.0.M7'
    runtime ':events-push:1.0.M7'
}

MyEvents.groovy (grails-app/conf)
---------------    
    events = {    
        'myTestEvent' namespace : 'myApp', browser:true, browserFilter: { message, request ->
            println "myTestEvent event raised"
            return true // allows browser push on this topic
        }
    }

最初我遇到了问题,因为事件推送插件无法找到氛围插件。所以我不得不在grails home(<grails_home>/lib/jars/atmosphere-0.9.0RC3 and atmosphere-1.1.0-SNAPSHOT)下手动复制粘贴。然后它开始编译项目。但是<r:>标签没有被编译并抛出运行时错误,因为Error executing tag <r:layoutResources>: No module found with name [grailsEvents] 我无法找到如何使其工作的正确文档。有人可以指出逐步设置此插件并使其工作的正确方法吗?我提到了这个Grails 事件推送插件,没有得到服务器事件的响应,但我仍然无法使其工作。任何帮助深表感谢!!!

4

1 回答 1

2

可能这个存储库可以帮助你。看一看..,。

另请阅读文档。

而且您无法解决依赖气氛插件,因为您没有提及

mavenRepo "https://oss.sonatype.org/content/repositories/snapshots/"

在构建配置中的存储库块中。

于 2013-10-01T19:32:09.930 回答