有没有办法像在Standalone Java Application中那样在Spring Controller中传递参数
String filePath=args[0]
下面的代码我想提供文件Path
@RequestMapping(value="/someUrl/", method=RequestMethod.GET)
String imageFilePath=? //Is there any way to pass the arguments here
答案 0 :(得分:1)
使用@PathVariable
注释。
在你的jsp中通过发送一些变量来发送你的请求,比如
action=/${someurl}/
在您的控制器中,您可以使用它:
@RequestMapping(value="/{someurl}")
functionName (@PathVariable String yourUrl)