What does :.+
at mean {param:.+}
in this set of code in java? I tried the search but I did not find any explanation. Someone who knows explain this to me. Thank you very much.
BatchFileController.java
@RequestMapping("/runbatchfileparam/{param:.+}")
public ResultFormat runbatchFile(@PathVariable("param") String fileName)
{
RunBatchFile rbf = new RunBatchFile();
return rbf.runBatch(fileName);
}
source
share