Map.class for an expression that is expected to evaluate against Maps.
* @param expectedEvaluationResultType the class of object this expression is expected to return or set: for
- * example, Boolean.class for an expression that is expected to get or set a boolean value.
- * @param expressionVariables variables providing aliases for this expression during evaluation parsing. Optional.
+ * example, Boolean.class for an expression that is expected to get or set a boolean value. Typically
+ * used to facilitate type conversion by the expression evaluator; for example, if a evaluated expression equates to
+ * a String value 'true', with an expected Boolean result the string value could be converted to a typed Boolean
+ * value.
+ * @param expressionVariables variables providing aliases for this expression during evaluation. Optional.
* @return the evaluator for the parsed expression
* @throws ParserException an exception occurred during parsing
*/
diff --git a/spring-binding/src/main/java/org/springframework/binding/expression/support/AbstractExpressionParser.java b/spring-binding/src/main/java/org/springframework/binding/expression/support/AbstractExpressionParser.java
index 5dca7269..4ffe3d66 100644
--- a/spring-binding/src/main/java/org/springframework/binding/expression/support/AbstractExpressionParser.java
+++ b/spring-binding/src/main/java/org/springframework/binding/expression/support/AbstractExpressionParser.java
@@ -35,7 +35,7 @@ public abstract class AbstractExpressionParser implements ExpressionParser {
/**
* The expression prefix.
*/
- private static final String DEFAULT_EXPRESSION_PREFIX = "${";
+ private static final String DEFAULT_EXPRESSION_PREFIX = "#{";
/**
* The expression suffix.
diff --git a/spring-faces/ivy.xml b/spring-faces/ivy.xml
index 8eac99ed..1cb8e85b 100644
--- a/spring-faces/ivy.xml
+++ b/spring-faces/ivy.xml
@@ -10,7 +10,6 @@
| Name | +Address | +City, State | +Zip | +|
|---|---|---|---|---|
| #{hotel.name} | +#{hotel.address} | +#{hotel.city}, #{hotel.state}, #{hotel.country} | +#{hotel.zip} | +
+ |
+
| Name | +Address | +City, State | +Check in Date | +Check out Date | +Confirmation Number | +Action | +
|---|---|---|---|---|---|---|
| #{booking.hotel.name} | +#{booking.hotel.address} | +#{booking.hotel.city}, #{booking.hotel.state} | +#{booking.checkinDate} | +#{booking.checkoutDate} | +#{booking.id} | +
+ |
+