如何让Tomcat吞下这条线?我尝试了所有引用组合!
<liferay-ui:search-container-column-text name="howstheweather"
value="<liferay-ui:message key='<%=("Sun").equals(timeBean.today())?"sunny-day-msg":"take-umbrella-msg"%>'/>"
/>
询问是否有任何解决方案,而不是评估更改为EL和JSLT
答案 0 :(得分:1)
您不能在其他jsp-tag的值中使用jsp-tag。但<liferay-ui:search-container-column-text .../>
- 标记具有translate
属性。为您解决方案:
<liferay-ui:search-container-column-text name="howstheweather"
value='<%=("Sun").equals(timeBean.today())?"sunny-day-msg":"take-umbrella-msg"%>'
translate='true'
/>