如何将谷歌应用程序引擎java的用户界面包含到eclipse中?
我在 Dreamweaver 中设计了我的用户界面,我希望将我设计的用户界面包含到 Eclipse for google App Engine Java 中,是否可以这样做?
I had design my User Interface in dreamweaver and I hope to include the User Interface that I had design into eclipse for google app engine java, is it possible to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将所有 HTML/CSS/Javascript 放入 App Engine 项目的“war”或“web”目录中(位于可能已经存在的index.jsp 或index.html 旁边)。这些文件将在部署时上传并作为静态文件使用。
不过,我认为您必须至少修改其中一些文件才能使它们“活动”。例如,将 HTML 转换为 JSP,并将它们与一些进行服务器端处理的 servlet 连接起来。
You can put all HTML/CSS/Javascript into the "war" or "web" directory of the App Engine project (next to the index.jsp or index.html which is probably already there). Those files will be uploaded and served as static files when deployed.
I assume that you will have to modify at least some of those files, though, to make them "active". For example by turning the HTML into JSP and wiring them up with some servlets that do the server-side processing.