相对 URL 到服务器路径的转换 - Grails
在自定义标记中,我接收需要打开的文件的 url 作为参数。
我有这个
/content/data.html
输出
${createLinkTo(dir:'content',file:'data.html')}:
,我需要“服务器路径”:
C:\mygrailsapp\web-app\content\data.html
In a custom tag, I am receiving as a parameter the url of a file, which I need to open.
I have this
/content/data.html
which is the output from
${createLinkTo(dir:'content',file:'data.html')}:
and I need the 'server path':
C:\mygrailsapp\web-app\content\data.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Spring 应用程序上下文来查找资源。如果它位于 web-app 文件夹下,则此方法有效:
You can use the Spring application context to find resources. This works if it's under web-app folder: