3

我们正在提供自定义 404.html 页面(在 app/views/errors 中)以供播放!1.2.5

在服务 404 期间,我们想连接到 DB,但是这样做时我们得到:

play.exceptions.JPAException: The JPA context is not initialized. 
JPA Entity Manager automatically start when one or more classes annotated
with the @javax.persistence.Entity annotation are found in the application.
at play.db.jpa.JPA.get(JPA.java:22)
at play.db.jpa.JPA.em(JPA.java:51)
at play.db.jpa.JPQL.em(JPQL.java:18)
at play.db.jpa.JPQL.find(JPQL.java:46)
...
at controllers.Security.check(Security.java:146)
at play.utils.Java.invokeStaticOrParent(Java.java:162)
at play.utils.Java.invokeChildOrStatic(Java.java:184)
at controllers.Secure$Security.invoke(Secure.java:203)
...
at play.server.PlayHandler.serve404(PlayHandler.java:681)

我应该寻求像https://stackoverflow.com/a/12242994/1444089这样的解决方案- 所以定义我自己的控制器处理程序而不仅仅是一个模板?

也许有一些配置选项,但找不到。

最后但并非最不重要的一点 - 为什么会发生这种情况,除了典型的播放请求之外,404 是否有理由进入其他请求生命周期?

4

1 回答 1

1

您可以在 try/finally 中使用 JPAPlugin 方法 startTx 和 closeTx

JPAPlugin.startTx(false);
try {
    // your code
} finally {
    JPAPlugin.closeTx();
}
于 2013-01-08T09:09:38.500 回答