重新生成dnld 消息
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user