FreemarkerConfig.java

  1. package no.nav.data.common.template;


  2. import freemarker.template.Configuration;
  3. import freemarker.template.TemplateExceptionHandler;
  4. import lombok.extern.slf4j.Slf4j;
  5. import no.nav.data.common.exceptions.TechnicalException;
  6. import no.nav.data.team.notify.dto.Model;
  7. import org.springframework.context.annotation.Bean;
  8. import org.springframework.core.io.ClassPathResource;

  9. import java.io.StringWriter;

  10. @Slf4j
  11. @org.springframework.context.annotation.Configuration
  12. public class FreemarkerConfig {

  13.     @Bean
  14.     public FreemarkerService freemarkerService() {
  15.         return new FreemarkerService();
  16.     }

  17.     private Configuration freemarkerConfig() {
  18.         try {
  19.             var config = new Configuration(Configuration.VERSION_2_3_30);
  20.             config.setClassForTemplateLoading(this.getClass(), "/template/freemarker");
  21.             config.setWrapUncheckedExceptions(true);
  22.             dev(config);
  23.             return config;
  24.         } catch (Exception e) {
  25.             log.debug(e.getMessage(), e);
  26.             throw new TechnicalException("io error", e);
  27.         }
  28.     }

  29.     private void dev(Configuration config) {
  30.         config.setTemplateExceptionHandler(TemplateExceptionHandler.HTML_DEBUG_HANDLER);
  31.         config.setLogTemplateExceptions(false);
  32.     }

  33.     public class FreemarkerService {

  34.         private final Configuration cfg;

  35.         public FreemarkerService() {
  36.             cfg = freemarkerConfig();
  37.         }

  38.         public String generate(Model model) {
  39.             try (var writer = new StringWriter()) {
  40.                 var template = cfg.getTemplate(model.getTemplate().getTemplateName());
  41.                 template.process(model, writer);
  42.                 return writer.toString();
  43.             } catch (Exception e) {
  44.                 TechnicalException freemarkerError = new TechnicalException("io error", e);
  45.                 log.error("Unable to generate String from freemarker template for model {}", model);
  46.                 log.error(e.getMessage(), e);
  47.                 throw freemarkerError;
  48.             }
  49.         }
  50.     }
  51. }