org.thymeleaf.spring3.expression.SpelVariableExpressionEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thymeleaf-spring3 Show documentation
Show all versions of thymeleaf-spring3 Show documentation
XML/XHTML/HTML5 template engine for Java
/*
* =============================================================================
*
* Copyright (c) 2011-2012, The THYMELEAF team (http://www.thymeleaf.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* =============================================================================
*/
package org.thymeleaf.spring3.expression;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.expression.spel.standard.SpelExpression;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;
import org.thymeleaf.Configuration;
import org.thymeleaf.TemplateEngine;
import org.thymeleaf.cache.ICache;
import org.thymeleaf.cache.ICacheManager;
import org.thymeleaf.context.IContext;
import org.thymeleaf.context.IContextVariableRestriction;
import org.thymeleaf.context.IProcessingContext;
import org.thymeleaf.context.VariablesMap;
import org.thymeleaf.exceptions.TemplateProcessingException;
import org.thymeleaf.expression.ExpressionEvaluatorObjects;
import org.thymeleaf.standard.expression.IStandardVariableExpressionEvaluator;
import org.thymeleaf.standard.expression.StandardExpressionExecutionContext;
import org.thymeleaf.standard.expression.StandardVariableRestrictions;
/**
*
* @author Daniel Fernández
* @author Guven Demir
*
* @since 2.0.9
*
*/
public class SpelVariableExpressionEvaluator
implements IStandardVariableExpressionEvaluator {
public static final SpelVariableExpressionEvaluator INSTANCE = new SpelVariableExpressionEvaluator();
private static final String SPEL_CACHE_PREFIX = "{spel}";
public static final String FIELDS_EVALUATION_VARIABLE_NAME = "fields";
public static final String THEMES_EVALUATION_VARIABLE_NAME = "themes";
private static final Logger logger = LoggerFactory.getLogger(SpelVariableExpressionEvaluator.class);
private static final SpelExpressionParser PARSER = new SpelExpressionParser();
private static final StandardEvaluationContext DEFAULT_EVALUATION_CONTEXT = new StandardEvaluationContext();
protected SpelVariableExpressionEvaluator() {
super();
}
public final Object evaluate(final Configuration configuration, final IProcessingContext processingContext,
final String spelExpression, final StandardExpressionExecutionContext expContext, final boolean useSelectionAsRoot) {
if (logger.isTraceEnabled()) {
logger.trace("[THYMELEAF][{}] SpringEL expression: evaluating expression \"{}\" on target", TemplateEngine.threadIndex(), spelExpression);
}
try {
final Map contextVariables =
computeExpressionObjects(configuration, processingContext);
final SpelEvaluationContext evaluationContext =
new SpelEvaluationContext(DEFAULT_EVALUATION_CONTEXT, contextVariables);
final SpelExpression exp = getExpression(configuration, spelExpression);
final Object evaluationRoot =
(useSelectionAsRoot?
processingContext.getExpressionSelectionEvaluationRoot() :
processingContext.getExpressionEvaluationRoot());
setVariableRestrictions(expContext, evaluationRoot, contextVariables);
return exp.getValue(evaluationContext, evaluationRoot);
} catch (final TemplateProcessingException e) {
throw e;
} catch(final Exception e) {
throw new TemplateProcessingException(
"Exception evaluating SpringEL expression: \"" + spelExpression + "\"", e);
}
}
private static SpelExpression getExpression(final Configuration configuration, final String spelExpression) {
SpelExpression exp = null;
ICache cache = null;
final ICacheManager cacheManager = configuration.getCacheManager();
if (cacheManager != null) {
cache = cacheManager.getExpressionCache();
if (cache != null) {
exp = (SpelExpression) cache.get(SPEL_CACHE_PREFIX + spelExpression);
}
}
if (exp == null) {
exp = (SpelExpression) PARSER.parseExpression(spelExpression);
if (cache != null && null != exp) {
cache.put(SPEL_CACHE_PREFIX + spelExpression, exp);
}
}
return exp;
}
/**
* @deprecated Renamed as "computeExpressionObjects" in 2.0.17. This method will be removed in 2.1.0.
*/
@Deprecated
public Map computeContextVariables(
final Configuration configuration, final IProcessingContext processingContext) {
return computeExpressionObjects(configuration, processingContext);
}
public Map computeExpressionObjects(
final Configuration configuration, final IProcessingContext processingContext) {
final Map expressionObjects = new HashMap();
final Map processingContextExpressionObjects = processingContext.getExpressionObjects();
if (processingContextExpressionObjects != null) {
expressionObjects.putAll(processingContextExpressionObjects);
}
final Fields fields = new Fields(configuration, processingContext);
expressionObjects.put(FIELDS_EVALUATION_VARIABLE_NAME, fields);
final VariablesMap variables = processingContext.getContext().getVariables();
if (!variables.containsKey(THEMES_EVALUATION_VARIABLE_NAME)) {
variables.put(THEMES_EVALUATION_VARIABLE_NAME, new Themes(processingContext));
}
expressionObjects.put(THEMES_EVALUATION_VARIABLE_NAME, variables.get(THEMES_EVALUATION_VARIABLE_NAME));
final Map additionalExpressionObjects = computeAdditionalExpressionObjects(processingContext);
if (additionalExpressionObjects != null && !additionalExpressionObjects.isEmpty()) {
expressionObjects.putAll(additionalExpressionObjects);
}
return expressionObjects;
}
/*
* Meant to be overwritten
*/
protected Map computeAdditionalExpressionObjects(
@SuppressWarnings("unused") final IProcessingContext processingContext) {
return Collections.emptyMap();
}
protected void setVariableRestrictions(final StandardExpressionExecutionContext expContext,
final Object evaluationRoot, final Map contextVariables) {
final List restrictions =
(expContext.getForbidRequestParameters()?
StandardVariableRestrictions.REQUEST_PARAMETERS_FORBIDDEN : null);
final Object context = contextVariables.get(ExpressionEvaluatorObjects.CONTEXT_VARIABLE_NAME);
if (context != null && context instanceof IContext) {
final VariablesMap,?> variablesMap = ((IContext)context).getVariables();
variablesMap.setRestrictions(restrictions);
}
if (evaluationRoot != null && evaluationRoot instanceof VariablesMap,?>) {
((VariablesMap,?>)evaluationRoot).setRestrictions(restrictions);
}
}
@Override
public String toString() {
return "SpringEL";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy