重新生成dnld 消息

This commit is contained in:
zhouxiunai
2018-12-05 11:47:43 +08:00
parent e920e67695
commit 1b1207b07a
17 changed files with 691 additions and 631 deletions
@@ -0,0 +1,17 @@
package com.gzzn.omms.msgexchangeapi.controller;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class TestController {
@GetMapping("/test")
public void test(HttpServletResponse response) throws IOException {
response.getWriter().write("hello");
}
}