Skip to content

Commit

Permalink
Revert "first blood"
Browse files Browse the repository at this point in the history
This reverts commit 771d75a
  • Loading branch information
ddspwr committed Aug 2, 2019
1 parent 7199b04 commit aea7609
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/main/java/com/example/demo/RemoteOperation.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package com.example.demo;

public class RemoteOperation {
long vmc_no;
String operation;

public long getVmc_no() {
return vmc_no;
}

public void setVmc_no(long vmc_no) {
this.vmc_no = vmc_no;
}

public String getOperation() {
return operation;
}

public void setOperation(String operation) {
this.operation = operation;
}
}
27 changes: 27 additions & 0 deletions src/main/java/com/example/demo/WebSocketController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package com.example.demo;

import com.google.gson.Gson;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class WebSocketController {

// @RequestMapping(value = "/operation/{vmc}/{cmd}")
// public String remote(@PathVariable("vmc") long vmc, @PathVariable("cmd") String cmd) {
// System.out.print("remote");
// RemoteOperation operation = new RemoteOperation();
// operation.setVmc_no(vmc);
// operation.setOperation(cmd);
// String message = new Gson().toJson(operation);
// System.out.println("message in json is :" + message);
// return WebSocketServer.sendMessage(message, vmc);
// }

// @RequestMapping(value = "/test")
// public String test() {
// System.out.print("test");
// return "hello world";
// }
}

0 comments on commit aea7609

Please sign in to comment.