无法在eclipse中启动google web app,安全限制将无法完全模拟

Gre*_*aue 25 eclipse google-app-engine compiler-errors

当我尝试使用GAE在我的Google网络应用程序项目中运行自动生成的代码时,出现以下错误:

Mar 19, 2014 5:21:28 PM com.google.appengine.tools.development.agent.AppEngineDevAgent premain
SEVERE: Unable to load the App Engine dev agent. Security restrictions will not be completely emulated.
java.lang.RuntimeException: Unexpected exception during cast.
at com.google.apphosting.utils.clearcast.ClearCast$CasterImpl.cast(ClearCast.java:385)
at com.google.apphosting.utils.clearcast.ClearCast.staticCast(ClearCast.java:252)
at com.google.apphosting.utils.clearcast.ClearCast.staticCast(ClearCast.java:263)
at com.google.appengine.tools.development.agent.AppEngineDevAgent.premain(AppEngineDevAgent.java:61)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at sun.instrument.InstrumentationImpl.loadClassAndStartAgent(Unknown Source)
at sun.instrument.InstrumentationImpl.loadClassAndCallPremain(Unknown Source)
Caused by: java.lang.IllegalAccessException: Class com.google.apphosting.utils.clearcast.ClearCast$CasterImpl can not access a member of class com.google.appengine.tools.development.agent.$Proxy0 with modifiers "public"
at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
at java.lang.reflect.AccessibleObject.slowCheckMemberAccess(Unknown Source)
at java.lang.reflect.AccessibleObject.checkAccess(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at com.google.apphosting.utils.clearcast.ClearCast$CasterImpl.cast(ClearCast.java:383)
... 9 more
Run Code Online (Sandbox Code Playgroud)

有没有人知道如何解决这个问题?

码:

@SuppressWarnings("serial")
public class Lab7Servlet extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse resp)
        throws IOException {
    resp.setContentType("text/plain");
    resp.getWriter().println("Hello, world");
    }
}
Run Code Online (Sandbox Code Playgroud)

klo*_*oth 33

神游,

我遇到了完全相同的问题,我发现我的eclipse正在使用JRE 8(版本1.8).我不打算这样做,当我把它改为1.7时,这就解决了这个问题.

编辑:窗口 - >首选项 - > Java - >已安装的JRE.检查jre7以使其成为默认值.

相关说明:App Engine安装说明说使用1.7(但不要说你不能使用1.8):https://developers.google.com/appengine/docs/java/gettingstarted/installing

  • 我使用Java 1.8运行时遇到此错误. (3认同)
  • 仅供参考,最新版本(1.9.18)与1.8一样好用. (2认同)