On Thu, Jul 2, 2009 at 11:30 PM, zee <zenma
...@gmail.com> wrote:
> Is there any example on how to use StreamingMultipartResolver in
> Spring MVC based web application
> (actually grails) like sample xml file configuration settings to
> override default spring behaviour?
> I am facing the same problem using google app engine because the
> framework based on Spring MVC
> uses spring file uploads for multipart form requests.
> On Jun 25, 5:45 pm, Višar Svansson <vidarsv...@gmail.com> wrote:
> > Hi
> > Check outhttp://github.com/pjesi/springextras
> > You can use is.hax.spring.web.multipart.StreamingMultipartResolver
> > I am still working on this so watch for updates.
> > Cheers,
> > Višar
> > On Mon, Jun 22, 2009 at 5:06 AM, hu <itswa...@gmail.com> wrote:
> > > i got problem when upload file with MVC, and i wanna to know how did u
> > > implement this ?
> > > On May 13, 5:05 am, pjesi <vidarsv...@gmail.com> wrote:
> > > > Hi
> > > > CommonsMultipartResolver does write to the filesystem, which is not
> > > > what Google wants. I'm working on a special MultipartResolver for the
> > > > appengine to resolve this issue. Let me know if you are interested.
> > > > Cheers
> > > > Višar
> > > > On Apr 20, 9:25 pm, Arjan <huij...@gmail.com> wrote:
> > > > > Hi all,
> > > > > I am creating a form that allows the user touploadan image. I use
> > > > > Spring MVC. I have configured the mulipart resolved as follows:
> > > > > <bean id="multipartResolver"
> class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
> > > > > <property name="maxUploadSize" value="2000000" />
> > > > > </bean>
> > > > > However, this results in an exception because it tries to write a
> temp
> > > > > file. I know the Commons FileUploadlibrary used support streaming
> > > > > without actually creating a temp file. Can someome tell me how I
> can
> > > > > configure this in Spring MVC?
> > > > > Thanks in advance!
> > > > > Arjan