Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am devolping one application using java,rich:faces,jsf and hibernate. I have to develop a blog module their like google blog where user can insert image,videos,text in text editor and then he can preview all the content in one page.

How i can achieve this.Is image and videos should be saved somewhere in filesystem or server directory or i need to save all the thing in database. How i can develop that kind of blogging feature using these technologies.If someone has done it then please help.

share|improve this question
Are you planning on saving video and images to the database? I would recommend that you avoid this approach and rather save them to the file system in which case you don't need Hibernate. – Dave Maple May 5 '11 at 11:32
yes this is what now i am thinking rather than saving into database i need to save it to file system.What now i want is using the editor user can upload imag and video in server and put the url to image and video in the editor.How i can achieve this? – user694618 May 6 '11 at 7:36
2  
Please read stackoverflow.com/questions/how-to-ask – Jim Garrison May 13 '11 at 3:59

closed as not a real question by Matthew Scharley, Jim Garrison, Michael Petrotta, Mitch Wheat, Jim Lewis May 13 '11 at 4:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Since you are using rich:editor you could build out an interface that also includes the ability to upload resources to the filesystem using rich:fileUpload:

<h:form id="mediaUpload">
    <rich:fileUpload fileUploadListener="#{mediaUploadBean.listener}" id="upload">
        <a4j:ajax event="uploadcomplete" execute="@none" render="info" />
    </rich:fileUpload>
</h:form>

and then process the uploaded resources:

@ManagedBean(name = "mediaUploadBean")
@RequestScoped
public class MediaUploadBean {

     public void listener(FileUploadEvent event) throws Exception {
        //process file here w/ event.getUploadedFile()
    }
}

see component reference for more information:

Richfaces FileUpload Component

share|improve this answer

It depends upon the restrictions in your environment; if all you have access to is a database, then that's where you store your images and videos and text.

If you've got access to some kind of file store mechanism, then you should probably use that for storing files and videos, and store the filenames in your database. Databases can store big blobs of data, but they were designed to handled relationships between data. So they handle that better. :)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.