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

com.aspectran.pebble.view.PebbleViewDispatcher Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2025 The Aspectran Project
 *
 * 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 com.aspectran.pebble.view;

import com.aspectran.core.activity.Activity;
import com.aspectran.core.activity.response.dispatch.AbstractViewDispatcher;
import com.aspectran.core.activity.response.dispatch.ViewDispatcherException;
import com.aspectran.core.adapter.ResponseAdapter;
import com.aspectran.core.context.rule.DispatchRule;
import com.aspectran.pebble.PebbleTemplateEngine;
import com.aspectran.utils.Assert;
import com.aspectran.utils.logging.Logger;
import com.aspectran.utils.logging.LoggerFactory;
import io.pebbletemplates.pebble.PebbleEngine;

/**
 * The Class PebbleViewDispatcher.
 *
 * 

Created: 2016. 1. 27.

* * @since 2.0.0 */ public class PebbleViewDispatcher extends AbstractViewDispatcher { private static final Logger logger = LoggerFactory.getLogger(PebbleViewDispatcher.class); private final PebbleEngine pebbleEngine; public PebbleViewDispatcher(PebbleTemplateEngine pebbleTemplateEngine) { Assert.notNull(pebbleTemplateEngine, "pebbleTemplateEngine must not be null"); this.pebbleEngine = pebbleTemplateEngine.getPebbleEngine(); } public PebbleViewDispatcher(PebbleEngine pebbleEngine) { Assert.notNull(pebbleEngine, "pebbleEngine must not be null"); this.pebbleEngine = pebbleEngine; } @Override public void dispatch(Activity activity, DispatchRule dispatchRule) throws ViewDispatcherException { String viewName = null; try { viewName = resolveViewName(dispatchRule, activity); ResponseAdapter responseAdapter = activity.getResponseAdapter(); String contentType = dispatchRule.getContentType(); if (contentType == null) { contentType = getContentType(); } if (contentType != null) { responseAdapter.setContentType(contentType); } String encoding = dispatchRule.getEncoding(); if (encoding == null && responseAdapter.getEncoding() == null) { encoding = activity.getTranslet().getDefinitiveResponseEncoding(); } if (encoding != null) { responseAdapter.setEncoding(encoding); } if (logger.isDebugEnabled()) { logger.debug("Dispatching to Pebble template [" + viewName + "]"); } PebbleTemplateEngine.process(pebbleEngine, viewName, activity); } catch (Exception e) { activity.setRaisedException(e); throw new ViewDispatcherException("Failed to dispatch to Pebble template " + dispatchRule.toString(this, viewName), e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy