I had this problem on Heroku and it was case insensitive.
In my controller, I had something like
public static void showUser(Long id) { ... render(user); }
but in my browse folder I had
app/views/Application/showuser.html
This is fine on my Mac and Windows, but on Linux machines, including Heroku, the showUser.html
file showUser.html
not be found.
source share