-
Jul 5th, 2009, 06:50 AM
#1
file upload
Hi,
Is it possible to add file type to persistent class and next generate automatic controller with file upload support ?
If yes, how can I do it ?
I've tried to "add field string something -type java.io.File" but this does not work :>
-
Jul 5th, 2009, 07:38 PM
#2
Hi,
Roo currently includes the Apache Commons FileUpload library to get you started on the file upload functionality of your Web page.
There are a number of different scenarios which users choose to handle file uploads. For example, you could upload a file and store it in a resources directory on your Web server and just store the local URL, filename, extension, etc in your database, or you could serialize (if possible) the complete file into a LOB field and store it as binary data in the database. It depends on your application.
This is the reason (apart from finding the time
) why we have not yet implemented further support for file uploads through Spring MVC. So you would need to customize your application a little bit. You can use the new push-in functionality to make sure Roo will not overwrite your code in the aspects.
To get you started, the Spring documentation has a nice chapter explaining your options here: http://static.springsource.org/sprin...#mvc-multipart.
Hope this helps.
Regards,
Stefan
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules