Search code examples
resourcesgspgrails-controllergrails-3.0

Access resources grails 3


Good day. I can't find information about resources in grails 3.

Where I need to put images etc. And how I need to use this images and other resources on GSP page.

Where I can put properties file and how I can read them after?

Thank you.


Solution

  • Place your image say excel.png under your

    project/grails_app/assets/images 
    

    directory. Then access the image in your gsp as under.

    <asset:image src="excel.png" width="40" height="30" align="left"/></a>