我在Tomcat上有一个https的网页,用java keytool创建了SSL。现在,当在gsp中使用multipart / form-data时,我们无法上传文件。日志说
Error when matching URL mapping [/(*)/(*)?/(*)?(.(*))?]:class "org.apache.commons.io.IOUtils"'s signer information does not match signer information of other classes in the same package
java.lang.SecurityException: class "org.apache.commons.io.IOUtils"'s signer information does not match signer information of other classes in the same package
我目前的解决方案是;发送base64编码的字符串,并将字符串转换为控制器中的文件。有人能找到解决这个问题的最佳方法吗?