如何在Spring Controller中提供文件的动态路径

时间:2017-04-27 12:20:22

标签: java spring spring-boot

有没有办法像在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

1 个答案:

答案 0 :(得分:1)

使用@PathVariable 注释。
在你的jsp中通过发送一些变量来发送你的请求,比如

action=/${someurl}/ 

在您的控制器中,您可以使用它:

@RequestMapping(value="/{someurl}")
functionName (@PathVariable String yourUrl)