How can I create in Flow an Image(image stored as byte of arrays) and displ

I have following question. In database I have stored images as bytes. How can I create in Flow an Image and display?

You can use a dynamic resource servlet, convert your byte array to a stream and transfer it over a servlet.

If you use a wilcard pattern for the servlet(urlPatterns = “/images/*”), you can do your query in the servlet and then display images using the new servlet urls:

http://your-domain.com/images/your-databasereference

Temitayo, thank You, it really helped!