GWT with content management system

I have a GWT page with rich functionality. I wanted to use this module on different websites as a widget. But due to the limited flexibility of this module, I cannot easily change the design and not insert this module into different pages of SEO (search engine optimization).

If there is any CMS or methodology to facilitate the work with GWT?

+1
java seo content-management-system gwt gwt-rpc
source share
2 answers

Take a look at GaSP: http://code.google.com/p/gasp-web-engine/

This is a CMS that I wrote based on GWT / SQL / PHP. It is quite flexible. Let me know if you are willing to check it out.

He runs my website: http://www.stevenjaycohen.com

Stephen

0
source share

It looks like you already ruled out the implementation of the module on different sites, but you checked the GWT Exporter

The project is a GWT module that contains a generator capable of accepting GWTs and exporting them as regular Javascript APIs, called from handwritten Javascript without JSNI, and is suitable for use in mashups.

This can allow you to expose an existing module unchanged using pure JS. This will probably simplify the implementation of your module on other sites.

0
source share

All Articles