2

我在 JSP 中显示属性文件中的某些属性,如下所示:

<spring:eval expression="@propertyConfigurer.getProperty('myproperty')"/>

现在,我想在里面使用相同的属性<sec:authorize access="hasRole()/>

<sec:authorize access="hasRole('<spring:eval expression="@propertyConfigurer.getProperty('myproperty')"/>')">

这是行不通的。

4

1 回答 1

1

试试这个:

<spring:eval expression="@propertyConfigurer.getProperty('myproperty')" var="myproperty"/>
<sec:authorize access="hasRole('${myproperty}')">
于 2013-02-27T15:18:27.513 回答