GET /home/:id/delete controllers.Application.delete(id:Option[Long])
I am working on play 2.1 framework with scala and this error occurs . how to solve it
GET /home/:id/delete controllers.Application.delete(id:Option[Long])
I am working on play 2.1 framework with scala and this error occurs . how to solve it
Please remove Option[]
like below url
GET /home/:id/delete controllers.Application.delete(id:Long)