Package org.springframework.core.io

Examples of org.springframework.core.io.PathResource


    CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver( servletContext );
    multipartResolver.setMaxUploadSize( multipartConfig.getMaxFileSize() );
    multipartResolver.setMaxInMemorySize( multipartConfig.getFileSizeThreshold() );

    try {
      multipartResolver.setUploadTempDir( new PathResource( multipartConfig.getLocation() ) );
    }
    catch ( IOException ioe ) {
      throw new ServletException( "Illegal location for multipart uploads: " + multipartConfig.getLocation() );
    }
View Full Code Here

TOP

Related Classes of org.springframework.core.io.PathResource

Copyright © 2018 www.massapicom. 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.