com.aspectran.web.support.view.JspTemplateViewDispatcher Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2023 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.web.support.view;
import com.aspectran.core.activity.Activity;
import com.aspectran.core.activity.process.result.ProcessResult;
import com.aspectran.core.activity.response.dispatch.DispatchResponse;
import com.aspectran.core.activity.response.dispatch.ViewDispatcher;
import com.aspectran.core.activity.response.dispatch.ViewDispatcherException;
import com.aspectran.core.adapter.RequestAdapter;
import com.aspectran.core.adapter.ResponseAdapter;
import com.aspectran.core.context.rule.DispatchRule;
import com.aspectran.core.util.ToStringBuilder;
import com.aspectran.core.util.logging.Logger;
import com.aspectran.core.util.logging.LoggerFactory;
import com.aspectran.web.activity.request.ActivityRequestWrapper;
import javax.servlet.RequestDispatcher;
import javax.servlet.http.HttpServletResponse;
import java.io.FileNotFoundException;
/**
* JSP or other web resource integration.
* Sends the model produced by Aspectran's internal activity
* to the JSP to render the final view page.
*
* Created: 2019. 02. 18
*/
public class JspTemplateViewDispatcher implements ViewDispatcher {
private static final Logger logger = LoggerFactory.getLogger(JspTemplateViewDispatcher.class);
private static final String DEFAULT_CONTENT_TYPE = "text/html;charset=ISO-8859-1";
private String contentType;
private String template;
private String includePageKey;
@Override
public String getContentType() {
return (contentType != null ? contentType : "text/html");
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public void setTemplate(String template) {
this.template = template;
}
public void setIncludePageKey(String includePageKey) {
this.includePageKey = includePageKey;
}
@Override
public void dispatch(Activity activity, DispatchRule dispatchRule) throws ViewDispatcherException {
try {
if (template == null) {
throw new IllegalArgumentException("No specified template page");
}
if (includePageKey == null) {
throw new IllegalArgumentException("No attribute name to specify the include page name");
}
String dispatchName = dispatchRule.getName(activity);
if (dispatchName == null) {
throw new IllegalArgumentException("No specified dispatch name");
}
RequestAdapter requestAdapter = activity.getRequestAdapter();
ResponseAdapter responseAdapter = activity.getResponseAdapter();
requestAdapter.setAttribute(includePageKey, dispatchName);
String contentType = dispatchRule.getContentType();
if (contentType != null) {
responseAdapter.setContentType(contentType);
} else {
responseAdapter.setContentType(DEFAULT_CONTENT_TYPE);
}
String encoding = dispatchRule.getEncoding();
if (encoding != null) {
responseAdapter.setEncoding(encoding);
} else if (responseAdapter.getEncoding() == null) {
encoding = activity.getTranslet().getIntendedResponseEncoding();
if (encoding != null) {
responseAdapter.setEncoding(encoding);
}
}
ProcessResult processResult = activity.getProcessResult();
DispatchResponse.saveAttributes(requestAdapter, processResult);
HttpServletResponse response = responseAdapter.getAdaptee();
if (response.isCommitted()) {
response.reset();
}
if (logger.isTraceEnabled()) {
logger.trace("Dispatching to JSP Template [" + template + "] using dispatch name '" +
dispatchName + "'");
}
ActivityRequestWrapper requestWrapper = new ActivityRequestWrapper(activity);
RequestDispatcher requestDispatcher = requestWrapper.getRequestDispatcher(template);
requestDispatcher.forward(requestWrapper, response);
if (response.getStatus() == 404) {
throw new FileNotFoundException("Failed to find resource '" + template + "'");
}
} catch (Exception e) {
throw new ViewDispatcherException("Failed to dispatch to JSP " +
dispatchRule.toString(this, template), e);
}
}
@Override
public boolean isSingleton() {
return true;
}
@Override
public String toString() {
ToStringBuilder tsb = new ToStringBuilder();
tsb.append("name", super.toString());
tsb.append("defaultContentType", contentType);
tsb.append("template", template);
tsb.append("includePageKey", includePageKey);
return tsb.toString();
}
}