我正在做一个 JSP/servlet 项目。我的一些队友喜欢将用于呈现页面内容的文本消息存储在字符串变量中<c:set scope="page"/>
。这是一个好习惯吗?如果没有,不这样做的原因是什么?
问问题
702 次
1 回答
1
我不会称其为不好的做法,尤其是在page
范围内使用时。
<c:set var="myVariable" scope="page"
value="${myBean.someProperty.anotherProperty}" />
Value of A is ${myVariable.a}
Value of B is ${myVariable.b}
Value of C is ${myVariable.c}
比可读性强
Value of A is ${myBean.someProperty.anotherProperty.a}
Value of B is ${myBean.someProperty.anotherProperty.b}
Value of C is ${myBean.someProperty.anotherProperty.c}
但是,如果您使用它来存储文本消息,更好的选择可能是在您的 JSP中使用Message Bundle并使用它。fmt
标签可用于此。
于 2013-10-23T08:14:08.380 回答