Java – spring upload file problem
•
Java
I need to upload the file from the browser to the server I use spring 3.2 as my web framework
So I configured my application to do this
1 – I have web xml
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <context-param> <param-name>contextClass</param-name> <param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value> </context-param> <context-param> <param-name>contextConfigLocation</param-name> <param-value>racoonsoft.chaos.settings</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>MyServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value></param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>MyServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>admin/library</welcome-file> </welcome-file-list> </web-app>
2 – mainconfig class
@Configuration @Import({WebConfig.class }) public class MainConfig { @Bean public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() { return new PropertySourcesPlaceholderConfigurer(); } @Bean public static ScheduledAnnotationBeanPostProcessor scheduledAnnotationBeanPostProcessor() { return new ScheduledAnnotationBeanPostProcessor(); } @Bean public static StandardServletMultipartResolver multipartResolver() { StandardServletMultipartResolver resolver = new StandardServletMultipartResolver(); return resolver; } }
3 – controller to handle multipart uploads
@Controller @MultipartConfig(fileSizeThreshold=1024*1024*2,// 2MB maxFileSize=1024*1024*10,// 10MB maxRequestSize=1024*1024*50) public class FileUpload { public static final int UPLOAD_RESULT_OK = 100000; @Autowired BookDao book_dao; @RequestMapping(value = "/admin/library/upload_file",method = RequestMethod.POST) public String saveFiles(@RequestParam("file-file") multipartfile file) throws IOException { if (!file.isEmpty()) { byte[] bytes = file.getBytes(); return "redirect:caps/total_fail"; } else { return "redirect:caps/total_fail"; } } }
4 – JSP, I place my form submission file
...<form method="post" action="/admin/library/upload_file" enctype="multipart/form-data"> <input type="text" name="name"/> <input type="file" name="file-file"/> <input type="submit"/> </form>...
When I submit the form, I get an exception
org.springframework.web.bind.MissingServletRequestParameterException: required multipartfile parameter 'file-file' is not present org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:202)
I don't know why when I delete @ requestparam annotation, I get my method call, but the file parameter = null What's my problem?
Solution
I fixed this problem by adding the following to my spring configuration file:
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" />
(the error I got was "org. Springframework. Web. Bind. Missingservletrequestparameterexception: the required multipartfile parameter 'myfile' does not exist
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码