gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 13:19:04 39 4
gpt4 key购买 nike

有没有办法像我们在独立Java应用程序中那样在Spring Controller 中传递参数

    String filePath=args[0] 

下面是我想提供文件路径的代码

    @RequestMapping(value="/someUrl/", method=RequestMethod.GET)

String imageFilePath=? //Is there any way to pass the arguments here

最佳答案

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

action=/${someurl}/ 

在你的 Controller 中你可以使用它,例如:

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

关于java - 如何在 Spring Controller 中提供文件的动态路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43657656/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com