@MessageMapping使用Grails spring-websocket插件

时间:2014-08-01 17:46:57

标签: grails grails-2.0 grails-controller spring-websocket

我是Grails的新手,正致力于让WebSockets在应用程序中运行。我得到了大部分工作,除了我无法弄清楚如何将参数传递给使用@MessageMapping注释的方法。

这有效:

class MyController{
    @MessageMapping(value="/start")
    protected void startProcess(){ }
}

我需要这样的工作:

 @MessageMapping(value="/start/{file}")
 protected void startProcess(){ 
     String file = params.file
     //do somethig with the file...
 }

但它不起作用。我尝试过更改UrlMappings.groovy,@ PathVariable。我很确定我错过了一些简单的东西。有什么指针吗?

1 个答案:

答案 0 :(得分:2)

要从路径中获取某些内容,请使用@DestinationVariable(请参阅spring websocket文档中的 20.4.4注释消息处理)。

这是一个工作片段(grails 2.4.3,基于插件示例):

// Domain Class
class Foo {
    String name
    String desc
}

// controller method
@MessageMapping("/hello/{file}")
@SendTo("/topic/hello")
protected String hello(@DestinationVariable String file, @Payload Foo foo) {
    return "received: ${file} ${foo}"
}

// javascript
client.send("/app/hello/FILE", {}, JSON.stringify({
    'name': "foo",
    'desc': "a foo"
}));