如何使用Play 2.0(java)创建自定义404和500页面处理程序?

时间:2012-07-15 14:19:11

标签: playframework-2.0

代码

public class Global extends GlobalSettings {      
    @Override
    public Result onHandlerNotFound(String s) {
        return notFound(views.html.error.render());
    }  
}

1 个答案:

答案 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
...