mvc support - wip preparing for release

This commit is contained in:
Keith Donald
2007-10-28 18:24:50 +00:00
parent e59408ffb3
commit cc0f5dedd0
66 changed files with 2410 additions and 85 deletions

View File

@@ -13,9 +13,9 @@
<!-- global dependencies -->
<dependency org="commons-logging" name="commons-logging" rev="1.0.4"/>
<dependency org="ognl" name="ognl" rev="2.6.9" />
<dependency org="org.springframework" name="spring-beans" rev="2.1-m4" />
<dependency org="org.springframework" name="spring-context" rev="2.1-m4" />
<dependency org="org.springframework" name="spring-core" rev="2.1-m4" />
<dependency org="org.springframework" name="spring-beans" rev="2.5-rc1" />
<dependency org="org.springframework" name="spring-context" rev="2.5-rc1" />
<dependency org="org.springframework" name="spring-core" rev="2.5-rc1" />
<!-- build time only dependencies -->
<dependency org="javax.el" name="el-api" rev="1.0" conf="buildtime->default"/>

View File

@@ -51,8 +51,11 @@ public interface ExpressionParser {
* @param expressionTargetType the class of target object this expression can successfully evaluate; for example,
* <code>Map.class</code> 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, <code>Boolean.class</code> 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, <code>Boolean.class</code> 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
*/

View File

@@ -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.