GWT for big projects?

后端 未结 3 788
半阙折子戏
半阙折子戏 2021-01-06 14:08

My friend and I want to develop a big web2.0 project. We decided to write it in Java because we love it and we are good at it and the other libraries which we will use are w

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-06 14:32

    Well GWT is suitable for web applications and not web sites or web pages, GWT is suitable for applications like Gmail which is a BIG application yet contains a single page which has complex actions.

    GWT fails in some projects with many pages, We used GWT in an ERP system which contained about 100 page each page represents CRUD operations + some business operations, GWT wasn't the perfect choice.

    Other thing GWT may fail in is that web crawlers can't extract information from javascript files generated by GWT. Search engines prefer static HTML generated from server side, and not generated on client side by javascript as GWT does. So, Google search engine will not give results from your site.

    In summary, GWT is suitable for web applications with fewer number of pages and more complex actions.

提交回复
热议问题