Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のコードを試しました
<h:form rendered="{#{cars.enabled} and #{cars.enabledEdit}}">
しかし、これは機能しません。
これが適切なEL式です
<h:form rendered="#{cars.enabled and cars.enabledEdit}">
必要ありません (#{} 内で #{} を使用することは違法です)