我在JSP中显示属性文件中的某些属性,如下所示:
<spring:eval expression="@propertyConfigurer.getProperty('myproperty')"/>
现在,我想在<sec:authorize access="hasRole()/>
<sec:authorize access="hasRole('<spring:eval expression="@propertyConfigurer.getProperty('myproperty')"/>')">
哪个不起作用。
答案 0 :(得分:1)
试试这个:
<spring:eval expression="@propertyConfigurer.getProperty('myproperty')" var="myproperty"/>
<sec:authorize access="hasRole('${myproperty}')">