【fix bug】删除注释掉的请求注解

This commit is contained in:
tianwenbo
2023-04-06 15:08:27 +08:00
parent 07e4b2f892
commit 7d10fc3faa
21 changed files with 10 additions and 100 deletions
@@ -35,7 +35,6 @@ public class MockController {
* @param filename
* @return
*/
// @RequestMapping(value = "/json/{filename}", method = RequestMethod.GET)
@GetMapping("/json/{filename}")
public String getJsonData(@PathVariable String filename) {
String jsonpath = "classpath:com/jero/modules/demo/mock/json/"+filename+".json";
@@ -198,7 +198,7 @@ public class JoaDemoController {
* @param response
* @return
*/
// @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
@PostMapping("/importExcel")
public Results<T> importExcel(HttpServletRequest request, HttpServletResponse response) {
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;