Doubly nested EL variables?

北慕城南 提交于 2021-02-04 18:07:34

问题


I'm using Spring MVC for my controller, and JSPs are my presentation layer.

Inside my Spring controller, I have:

model.put("issues", dataManager.getIssues());
model.put("functions", dataManager.getFunctions());

So now inside my JSP, I have access to

${requestScope['issues']}
${requestScope['functions']}

That's all well and good. But in order for my code to be extensible, I would like to store the variable name issues and functions inside the database, which will then be accessible through a property on a configs object that's being looped over. So what I'd like to end up with is something like the following:

<c:forEach items="${configs}" var="cfg">
    <c:if test="${cfg.configType == 'select'}">
        <th>${cfg.header}</th>
        <td><myTagLib:select values="${requestScope['${cfg.selectorName}']}" /></td>
    </c:if>
</c:forEach>

Where ${cfg.selectorName} will hold either issues or functions in this example.


回答1:


You're close. You only need to remove the nested ${} since that's invalid syntax.

<myTagLib:select values="${requestScope[cfg.selectorName]}" />


来源:https://stackoverflow.com/questions/7563267/doubly-nested-el-variables

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!