我想从我的数据库中显示样式完整的CSS。
#{Customization.headerCss}
的值为style="display:none;"
。
我希望在<div>
值的基础上显示我的#{Customization.headerCss}
,它将是无或阻止。
我的代码就像:
<div class="_content-title _radius-5px _ie8";" #{Customization.headerCss} >
<p>Hello display is block </p>
</div>
我收到错误:
org.apache.jasper.JasperException: /cardMgmt/preview/preview.jsp(700,68) #{..} is not allowed in template text
我该怎么做?
答案 0 :(得分:0)
我得到了解决方案:$代替#
<div class="_content-title _radius-5px _ie8";" ${Customization.headerCss} >
<p>Hello display is block </p>
</div>