我在 JSP 中显示属性文件中的某些属性,如下所示:
<spring:eval expression="@propertyConfigurer.getProperty('myproperty')"/>
现在,我想在里面使用相同的属性<sec:authorize access="hasRole()/>
<sec:authorize access="hasRole('<spring:eval expression="@propertyConfigurer.getProperty('myproperty')"/>')">
这是行不通的。