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 に答える