我正在从Java7迁移到Java8,从旧的GAE插件迁移到新的Cloud Tools插件。
我认为我的设置大多正确 - 但是当我尝试运行应用程序时,我得到了403.当我查看属性的Google Cloud Platform部分时,唯一的选择是“App Engine部署”当我打开它告诉我“没有找到项目”时。
我在Eclipse中登录Google。当我看到https://console.cloud.google.com/cloud-resource-manager时,它向我展示了两个项目(其中一个是正确的项目)。
控制台显示以下内容:
2017-12-31 18:40:37.513:INFO::main: Logging initialized @2741ms
2017-12-31 18:40:38.073:INFO:oejs.Server:main: jetty-9.3.18.v20170406
2017-12-31 18:40:41.859:INFO:oeja.AnnotationConfiguration:main: Scanning elapsed time=3321ms
2017-12-31 18:40:42.498:INFO:oejsh.ContextHandler:main: Started c.g.a.t.d.j.DevAppEngineWebAppContext@25bcd0c7{/,file:///C:/Users/andre_000/eclipse-workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/Postr/,AVAILABLE}{C:\Users\andre_000\eclipse-workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\Postr}
2017-12-31 18:40:42.520:INFO:oejs.AbstractConnector:main: Started NetworkTrafficSelectChannelConnector@5db4c359{HTTP/1.1,[http/1.1]}{localhost:8080}
2017-12-31 18:40:42.522:INFO:oejs.Server:main: Started @7751ms
Dec 31, 2017 6:40:42 PM com.google.appengine.tools.development.AbstractModule startup
INFO: Module instance default is running at http://localhost:8080/
Dec 31, 2017 6:40:42 PM com.google.appengine.tools.development.AbstractModule startup
INFO: The admin console is running at http://localhost:8080/_ah/admin
Dec 31, 2017 6:40:42 PM com.google.appengine.tools.development.DevAppServerImpl doStart
INFO: Dev App Server is now running
我错过了什么?
答案 0 :(得分:0)
您的控制台输出来自开发应用服务器,这是在您的开发计算机上运行的本地模拟器(let x = [| ]
)。您可以使用此模拟器来调试您的应用程序。一旦您对自己的应用感到满意,就可以将部署到App Engine,然后通过http://localhost:8080
启用您的应用。