使用批处理文件中的输入参数访问url时出现MissingServletRequestParameterException

时间:2017-07-01 05:23:58

标签: batch-file url exception

我想点击网址

start http://localhost:8080/startViewerWithInput?val1=25db8e44-b678-48cc-81a5-0000001eba28&val2=-2522169635265019118

这可以在网络浏览器中正常使用

但是当我试图把它放在批处理文件中时

我的应用程序给出错误,如

  

org.springframework.web.bind.MissingServletRequestParameterException:必需的字符串参数' val2'不存在

我的代码看起来像

@RequestMapping(value = "/startViewerWithInput", method = RequestMethod.GET)
    public String startViewerWithUserInput(@RequestParam(value = "val1",required = true) String val1, @RequestParam(value = "val2", required = true) String val2) 
  

抛出TimeoutException,ParseException {}

我知道当我将它们批量放入时,我正在做一些愚蠢的URL。请帮帮我。

0 个答案:

没有答案