Examples of ThymeleafHdivRequestDataValueProcessor


Examples of org.hdiv.web.servlet.support.ThymeleafHdivRequestDataValueProcessor

  protected LinkUrlProcessor linkUrlProcessor;

  @Bean(name = ConfigBeanDefinitionParser.REQUEST_DATA_VALUE_PROCESSOR_BEAN_NAME)
  public RequestDataValueProcessor requestDataValueProcessor() {

    HdivRequestDataValueProcessor dataValueProcessor = new ThymeleafHdivRequestDataValueProcessor();
    dataValueProcessor.setFormUrlProcessor(this.formUrlProcessor);
    dataValueProcessor.setLinkUrlProcessor(this.linkUrlProcessor);

    if (springSecurityPresent) {
      dataValueProcessor.setInnerRequestDataValueProcessor(new CsrfRequestDataValueProcessor());
    }
    return dataValueProcessor;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.