Route to static file in Play! 2.0

后端 未结 9 1747
甜味超标
甜味超标 2021-01-30 14:05

I\'m trying to make a route to a specific static file but everything I\'m trying ends with an error.

I\'ve made 3 different attempts:

1.

GET /fil         


        
9条回答
  •  无人及你
    2021-01-30 14:36

    I am not totally sure if this is correct, but this is what we are using to map a public folder containing our images, javascripts... etc..

    # Map static resources from the /public folder to the /assets URL path
    GET     /assets/*file               controllers.Assets.at(path="/public", file)
    

提交回复
热议问题