1

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

BalusC
  • 992,635
  • 352
  • 3,478
  • 3,452
ankit
  • 4,121
  • 4
  • 33
  • 57

1 Answers1

3

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.

Community
  • 1
  • 1
BalusC
  • 992,635
  • 352
  • 3,478
  • 3,452
  • can you tell me is there any other way to run junit tests if we have not used annotations and also not extended TestCase class – ankit Mar 07 '13 at 11:32
  • Would I only need to replace the libraries and the system will be up and running? – abbas Jul 19 '13 at 12:20