I'm trying to send a byte[] file in to a resource phase controller:
Controller:
@ResourceMapping(ServletContextKeys.SC_PRINT)
public final String printSomething(@RequestParam MultipartFile anexo, ResourceRequest request, ResourceResponse response) {
byte[] document = anexo.getBytes();
...
}
JQuery:
function print(){
jQ("#form").attr('action','${printURL}');
jQ("#form").submit();
}
JSP:
<form:form id="form" action="" method="post" enctype="multipart/form-data">
<portlet:resourceURL var='printURL' id='${ServletContextKeys.SC_PRINT}'>
<portlet:param name="anexo" value="${myBean.document}"/>
</portlet:resourceURL>
<label id="anexoName" onclick="print()" class="labelFiles"/>
Where myBean.document is a byte[] variable.
My first idea was defining the RequestParam anexo as byte[], in the controller, but it didn't work at all, so taking advantage of the binder defined in my initBinder method, I'm trying to convert the byte array to the multipart file, with the same results.
binder.registerCustomEditor(byte[].class, new ByteArrayMultipartFileEditor());)
Having this error:
Caused by: java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [org.springframework.web.multipart.MultipartFile]: no matching editors or conversion strategy found
Any ideas..? Thanks in advance!
