Java Code Examples for org.springframework.web.multipart.MultipartHttpServletRequest#getParts()

The following examples show how to use org.springframework.web.multipart.MultipartHttpServletRequest#getParts() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StandardServletMultipartResolver.java    From spring-analysis-note with MIT License 6 votes vote down vote up
@Override
public void cleanupMultipart(MultipartHttpServletRequest request) {
	if (!(request instanceof AbstractMultipartHttpServletRequest) ||
			((AbstractMultipartHttpServletRequest) request).isResolved()) {
		// To be on the safe side: explicitly delete the parts,
		// but only actual file parts (for Resin compatibility)
		try {
			for (Part part : request.getParts()) {
				if (request.getFile(part.getName()) != null) {
					part.delete();
				}
			}
		}
		catch (Throwable ex) {
			LogFactory.getLog(getClass()).warn("Failed to perform cleanup of multipart items", ex);
		}
	}
}
 
Example 2
Source File: StandardServletMultipartResolver.java    From java-technology-stack with MIT License 6 votes vote down vote up
@Override
public void cleanupMultipart(MultipartHttpServletRequest request) {
	if (!(request instanceof AbstractMultipartHttpServletRequest) ||
			((AbstractMultipartHttpServletRequest) request).isResolved()) {
		// To be on the safe side: explicitly delete the parts,
		// but only actual file parts (for Resin compatibility)
		try {
			for (Part part : request.getParts()) {
				if (request.getFile(part.getName()) != null) {
					part.delete();
				}
			}
		}
		catch (Throwable ex) {
			LogFactory.getLog(getClass()).warn("Failed to perform cleanup of multipart items", ex);
		}
	}
}
 
Example 3
Source File: StandardServletMultipartResolver.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
@Override
public void cleanupMultipart(MultipartHttpServletRequest request) {
	// To be on the safe side: explicitly delete the parts,
	// but only actual file parts (for Resin compatibility)
	try {
		for (Part part : request.getParts()) {
			if (request.getFile(part.getName()) != null) {
				part.delete();
			}
		}
	}
	catch (Throwable ex) {
		LogFactory.getLog(getClass()).warn("Failed to perform cleanup of multipart items", ex);
	}
}
 
Example 4
Source File: StandardServletMultipartResolver.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Override
public void cleanupMultipart(MultipartHttpServletRequest request) {
	// To be on the safe side: explicitly delete the parts,
	// but only actual file parts (for Resin compatibility)
	try {
		for (Part part : request.getParts()) {
			if (request.getFile(part.getName()) != null) {
				part.delete();
			}
		}
	}
	catch (Exception ex) {
		LogFactory.getLog(getClass()).warn("Failed to perform cleanup of multipart items", ex);
	}
}