All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mitchellbosecke.pebble.spring.extension.function.bindingresult.GetFieldErrorsFunction Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
/*******************************************************************************
 * Copyright (c) 2013 by Mitchell Bösecke
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 ******************************************************************************/
package com.mitchellbosecke.pebble.spring.extension.function.bindingresult;

import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import java.util.Map;

import org.springframework.context.MessageSource;
import org.springframework.validation.BindingResult;
import org.springframework.validation.FieldError;

import com.mitchellbosecke.pebble.template.EvaluationContext;

/**
 * 

* Function available to templates in Spring MVC applications in order to access * the BindingResult of a form *

* * @author Eric Bussieres */ public class GetFieldErrorsFunction extends BaseBindingResultFunction { private final MessageSource messageSource; public GetFieldErrorsFunction(MessageSource messageSource) { super(PARAM_FORM_NAME, PARAM_FIELD_NAME); if (messageSource == null) { throw new IllegalArgumentException("In order to use the GetErrorsFunction, a bean of type " + MessageSource.class.getName() + " must be configured"); } this.messageSource = messageSource; } @Override public Object execute(Map args) { List results = new ArrayList<>(); String formName = (String) args.get(PARAM_FORM_NAME); String field = (String) args.get(PARAM_FIELD_NAME); if (field == null) { throw new IllegalArgumentException("Field parameter is required in GetFieldErrorsFunction"); } EvaluationContext context = (EvaluationContext) args.get("_context"); Locale locale = context.getLocale(); BindingResult bindingResult = this.getBindingResult(formName, context); if (bindingResult != null) { for (FieldError error : bindingResult.getFieldErrors(field)) { String msg = this.messageSource.getMessage(error.getCode(), error.getArguments(), error.getDefaultMessage(), locale); if (msg != null) { results.add(msg); } } } return results; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy