将 PHP 页面迁移到 GWT 的最佳方法

发布于 2024-10-18 04:40:05 字数 174 浏览 3 评论 0原文

我正在寻找一个好的策略来将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万人眼中万个我 2024-10-25 04:40:05

这个问题有点模糊。任何 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.

別甾虛僞 2024-10-25 04:40:05

我自己将 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,这里是一个执行该操作的命令

rename 's/\.php$/\.jsp/' *.php
  1. 浏览并更改所有内容
<?php to <% and ?> to %> 

我的偏好是将它们实际更改为

<!--TODO% and %--> 

如果您使用的是 linux,这里是执行该操作的命令

grep -rl "<?php" *.jsp  | xargs sed -i 's|<?php|<!--TODO%|g'  
grep -rl "?>" *.jsp  | xargs sed -i 's|?>|%-->|g'
  1. 浏览并将所有这些 php 部分更改为 java
  2. 浏览并将您想要的任何页面转换为 gwt
  3. 更新您的 web.xml 文件

干杯,希望这有帮助

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

rename 's/\.php$/\.jsp/' *.php
  1. Go through and change all
<?php to <% and ?> to %> 

My preference is to actually change them to

<!--TODO% and %--> 

If you are using linux here is a command to do that

grep -rl "<?php" *.jsp  | xargs sed -i 's|<?php|<!--TODO%|g'  
grep -rl "?>" *.jsp  | xargs sed -i 's|?>|%-->|g'
  1. Go through and change all of those php sections to java
  2. Go through and convert whatever pages you want to gwt
  3. Update your web.xml file

Cheers, hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文