Chosing a right framework

I am planning to develop a web application using GWT, but before that I need to make few clarifications. The web app what I am developing should be compatible with Mobile phone browsers considerable smart phone browsers.

I googled a lot to know this but I did not find supporting or sufficient documentations.

If GWT doesnt support what would be the other framework, which is open source java based framework?


There is no big problem with mobile websites build using GWT, it generates standard javascript + html. There is some libraries that can help you build mobile site, like http://code.google.com/p/gwt-mobile-webkit/. And you can write any widget you wish.

But keep in mind that GWT will generate very heavy target files, sometimes few megabytes long. So if you target audience uses GPRS for accessing your site, it could be problematic for them.

There is also other web-framework, that are GWT based: http://vaadin.com/home. It have great collection of UI components, and currently authors are extending it to be more mobile friendly.


You could also try a different route with Context Framework. I think it suites better to mobile web developing because it is more lightweight solution. I have made a journey planner (in Finnish) with it and it was tailored especially to touch screen phones. You can find it here.

链接地址: http://www.djcxy.com/p/7666.html

上一篇: Spring MVC的DelegatingFilterProxy有什么意义?

下一篇: 选择一个合适的框架