Updating the routes file in the conf directory of my Play application does not seem to be reflecting.
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / controllers.Application.index()
GET /channel controllers.Application.createMember()
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)
When I make a request to my server at localhost:9000/channel it says action not found. My play application currently resides inside Eclipse work space.