2

我是 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。我很确定我错过了一些简单的东西。任何指针?

4

1 回答 1

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"
}));
于 2014-08-02T14:15:20.800 回答