Migrating from JSF 1.1 to JSF 1.2

浪子不回头ぞ 提交于 2019-12-01 12:26:31

问题


Can anybody tell me what things I need to keep in mind before migrating an application from JSF 1.1 to JSF 1.2?


回答1:


Not much, really. JSF 1.2 is 100% backwards compatible with JSF 1.1. Only thing which you need to take into account that JSF 1.2 fixes many, really many bugs. So if you ever incorrectly assumed some specific JSF 1.1 application behavior as "normal" behavior, but which is under the covers actually caused by a bug, then it would seemingly break.

In any case, just run unit tests before and after the upgrade and fix the issues individually.

It's only migrating from JSF 1.x to 2.x which requires more work, for sure if you also need to change the view technology from JSP to Facelets. For that, refer this answer: Migrating from JSF 1.2 to JSF 2.0.



来源:https://stackoverflow.com/questions/14833560/migrating-from-jsf-1-1-to-jsf-1-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!