将 PHP 页面迁移到 GWT 的最佳方法
我正在寻找一个好的策略来将 PHP 网站迁移到基于 GWT 前端的网站。
我打算使用 UIBinder 为新的 GWT 页面构建 UI。 PHP 页面有一组资源(图像、js 文件和 css 文件)。
将 HTML/CSS UI 转换为 UIBinder GWT 的好策略是什么?
谢谢。
I'm looking for a good strategy to migrate a PHP website into GWT front-end based site.
i'm intending to use UIBinder to build the UI for new GWT Pages. The PHP pages have a set of resources (images, js files and css files).
what is a good strategy to follow to convert HTML/CSS UI into UIBinder GWT ?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题有点模糊。任何 DIV 都将成为某种“面板”,如 FlowPanel、HTMLPanel 等。CSS 可以与 GWT 中的标记一起存在于块内的 UIBinder ui.xml 文件中。不确定你这个问题到底是什么意思。
This question's kind of vague. Anything that was a DIV would become a "Panel" of some sort, FlowPanel, HTMLPanel, etc. The CSS can live right alongside the markup in GWT in a UIBinder ui.xml file, inside a block. Not sure what you mean exactly by this question.
我自己将 php 网站迁移到 GWT 时遇到了困难。
这是我学到的。
首先,我了解到我并不是真的想将所有内容都转移到 GWT。
有很多内容很难转移到 GWT 项目 IE 引导程序中。
相反,我建议大多数页面使用 jsp。 Jsp 很像 php,并且可以与您现有的 GWT 项目一起使用。这里有几个链接可以说明这一点。
https://cloud.google.com/appengine/docs/java/gettingstarted/ui_and_code
http://www.gwtproject.org/articles/dynamic_host_page.html
Gwt 最擅长一页密集型应用程序,将所有内容制作为 jsp,然后将各个页面移动到 GWT 中可能是最简单的方法。
无论如何,这是我认为最简单的方法。
1. 将您的 php 站点复制到 gwt 项目的 war 文件夹中
2.将所有php文件重命名为jsp
如果您使用的是 linux,这里是一个执行该操作的命令
我的偏好是将它们实际更改为
如果您使用的是 linux,这里是执行该操作的命令
干杯,希望这有帮助
I have had a hard time moving a php website over to GWT myself.
Here is what I learned.
Firstly I learned that I didn't really want to move everything over to GWT.
There is a lot that is hard to move into a GWT project IE bootstrap.
Instead I would recommend using jsp instead for most pages. Jsp is a lot like php and will work with your existing GWT project. Here are a couple links that kind of look at that.
https://cloud.google.com/appengine/docs/java/gettingstarted/ui_and_code
http://www.gwtproject.org/articles/dynamic_host_page.html
Gwt is best at one page intensive apps and it might be easiest to make everything jsp then move individual pages into GWT.
Anyway here is what I think the easiest way to go about it.
1. Copy your php site into the war folder of your gwt project
2. Rename all of the php files to jsp
If you are using linux here is a command to do that
My preference is to actually change them to
If you are using linux here is a command to do that
Cheers, hope this helps