GWT vs Apache Wicket

前端 未结 6 1089
南方客
南方客 2021-02-14 02:34

Both GWT and Wicket are stateful, java object oriented based. GWT is completely client based with features like javascript optimization, CSS optimization, and I\'m pretty new to

6条回答
  •  闹比i
    闹比i (楼主)
    2021-02-14 02:56

    Wicket is server framework. It allow to create html which you needed. It is possible separation of roles in project. (Web design->html/css->java).

    If you consider to use GWT for you project, web designer probably not needed.
    GWT generate javascript. Most logic can be executed on browser side. GWT better for scalable application.

提交回复
热议问题