谁能知道如何在 gsp 页面中传递 servlet 上下文值。
我需要将 servlet 上下文值 customcss 传递给资源链接。
如果我在我的 gsp 页面中打印 ${application.customcss},我会得到 main.css 的值。
但是当我尝试将其传递给文件链接时,它不会采用 ${application.customcss} 值。
<link rel="stylesheet" href="${resource(dir: 'css', file:'${application.customcss}')}" type="text/css">
在我的页面中,链接没有正确创建。它直接将 ${application.customcss} 作为文件。
<link rel="stylesheet" href="/SAM-1.0/css/${application.customcss}" type="text/css">