在生产模式下播放1-3问题?

问题描述 投票:1回答:1

我正在使用play framework-1.3 。 在生产模式下运行项目时出现问题。

例外:

12:21:09,282 ERROR play:602 - Cannot start in PROD mode with errors
java.lang.NullPointerException
    at play.classloading.ApplicationCompiler$2.acceptResult(ApplicationCompiler.java:276)
    at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:480)
    at play.classloading.ApplicationCompiler.compile(ApplicationCompiler.java:292)
    at play.classloading.ApplicationClassloader.getAllClasses(ApplicationClassloader.java:428)
    at play.Play.preCompile(Play.java:604)
    at play.Play.init(Play.java:308)
    at play.server.Server.main(Server.java:160)

我不知道为什么我会收到此错误。 我发现互联网上的某个地方不支持在一个文件中嵌套类。 但我没有这样做,为什么我有这个错误?

playframework playframework-1.x
1个回答
0
投票

Play dos在一个文件中不支持两个类。 这就是为什么我会收到该错误。

我只做了2个不同的类,错误消失了。

Erroe是。 我在做如下。

ClassTest.java

public class ClassTest {
  // some implementation
}

// in same file i declared another class.

class another {
  // some implementation

}

解:

ClassTest.java

public ClassTest {
 // some implementation
}

another.java

public class another {
 //some implementation

}
© www.soinside.com 2019 - 2024. All rights reserved.