代码
public class Global extends GlobalSettings {
@Override
public Result onHandlerNotFound(String s) {
return notFound(views.html.error.render());
}
}
答案 0 :(得分:2)
您的课程未被Play加载为Global object。将error
类重命名为Global
并将其放入app
文件夹(位于根目录)。
修改您的application.conf
文件以更新Global对象的路径:
...
# Global object class
# ~~~~~
# Define the Global object class for this application.
# Default to Global in the root package.
global=your.package.to.error
...