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

org.springframework.web.portlet.multipart.PortletMultipartResolver Maven / Gradle / Ivy

There is a newer version: 5.3.34
Show newest version
/*
 * Copyright 2002-2007 the original author or authors.
 * 
 * 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 org.springframework.web.portlet.multipart;

import javax.portlet.ActionRequest;

import org.springframework.web.multipart.MultipartException;

/**
 * Portlet version of Spring's multipart resolution strategy for file uploads
 * as defined in RFC 1867.
 *
 * 

Implementations are typically usable both within any application context * and standalone. * *

There is one concrete implementation included in Spring: *

    *
  • {@link org.springframework.web.multipart.commons.CommonsMultipartResolver} * for Jakarta Commons FileUpload *
* *

There is no default resolver implementation used for Spring * {@link org.springframework.web.portlet.DispatcherPortlet DispatcherPortlets}, * as an application might choose to parse its multipart requests itself. To * define an implementation, create a bean with the id * {@link org.springframework.web.portlet.DispatcherPortlet#MULTIPART_RESOLVER_BEAN_NAME "portletMultipartResolver"} * in a DispatcherPortlet's application context. Such a resolver * gets applied to all requests handled by that DispatcherPortlet. * *

If a DispatcherPortlet detects a multipart request, it will * resolve it via the configured * {@link org.springframework.web.multipart.MultipartResolver} and pass on a * wrapped Portlet {@link ActionRequest}. * {@link org.springframework.web.portlet.mvc.Controller Controllers} can then * cast their given request to the {@link MultipartActionRequest} interface, * being able to access MultipartFiles. Note that this cast is * only supported in case of an actual multipart request. * *

 public void handleActionRequest(ActionRequest request, ActionResponse response) {
 *   MultipartActionRequest multipartRequest = (MultipartActionRequest) request;
 *   MultipartFile multipartFile = multipartRequest.getFile("image");
 *   ...
 * }
* * Instead of direct access, command or form controllers can register a * {@link org.springframework.web.multipart.support.ByteArrayMultipartFileEditor} * or {@link org.springframework.web.multipart.support.StringMultipartFileEditor} * with their data binder, to automatically apply multipart content to command * bean properties. * *

Note: There is hardly ever a need to access the * MultipartResolver itself from application code. It will simply * do its work behind the scenes, making MultipartActionRequests * available to controllers. * * @author Juergen Hoeller * @since 2.0 * @see MultipartActionRequest * @see org.springframework.web.multipart.MultipartFile * @see CommonsPortletMultipartResolver * @see org.springframework.web.multipart.support.ByteArrayMultipartFileEditor * @see org.springframework.web.multipart.support.StringMultipartFileEditor * @see org.springframework.web.portlet.DispatcherPortlet */ public interface PortletMultipartResolver { /** * Determine if the given request contains multipart content. *

Will typically check for content type * "multipart/form-data", but the actually accepted requests * might depend on the capabilities of the resolver implementation. * @param request the portlet request to be evaluated * @return whether the request contains multipart content */ boolean isMultipart(ActionRequest request); /** * Parse the given portlet request into multipart files and parameters, * and wrap the request inside a MultipartActionRequest object * that provides access to file descriptors and makes contained * parameters accessible via the standard PortletRequest methods. * @param request the portlet request to wrap (must be of a multipart content type) * @return the wrapped portlet request * @throws org.springframework.web.multipart.MultipartException if the portlet request * is not multipart, or if implementation-specific problems are encountered * (such as exceeding file size limits) * @see org.springframework.web.portlet.multipart.MultipartActionRequest#getFile * @see org.springframework.web.portlet.multipart.MultipartActionRequest#getFileNames * @see org.springframework.web.portlet.multipart.MultipartActionRequest#getFileMap * @see javax.portlet.ActionRequest#getParameter * @see javax.portlet.ActionRequest#getParameterNames * @see javax.portlet.ActionRequest#getParameterMap */ MultipartActionRequest resolveMultipart(ActionRequest request) throws MultipartException; /** * Cleanup any resources used for the multipart handling, * such as storage for any uploaded file(s). * @param request the request to cleanup resources for */ void cleanupMultipart(MultipartActionRequest request); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy