Using JDeveloper, I started developing a set of web pages for a project at work. Since I didn't know much about JDev at the time, I ran over to Oracle to follow some tutorials. The JDev tutorials recommended doing JSPX instead of JSP, but didn't really explain why. Are you developing JSPX pages? Why did you decide to do so? What are the pros/cons of going the JSPX route?
|
feedback
|
|
The main difference is that a JSPX file (officially called a 'JSP document') may be easier to work with because the requirement for well-formed XML may allow your editor to identify more typos and syntax errors as you type. However, there are also disadvantages. For example, well-formed XML must escape things like less-than signs, so your file could end up with content like:
The XML syntax may also be more verbose. | |||||||||||||
feedback
|
|
JSPX has a few inconvenients, on top of my head:
On the other hand:
| |||
|
feedback
|
|
A totally different line of reasoning why you should use jspx instead of jsp: JSPX and EL makes including javascript and embedded java codes much harder and much less natural to do than jsp. EL is a language specifically tailored for presentation logic. All this pushes you towards a cleaner separation of UI rendering and other logic. The disadvantage of lots of embedded code within a JSP(X) page is that it's virtually impossible to test easily, whereas practicing this separation of concerns makes most of your logic fully unit-testable. | |||
|
feedback
|
|
Hello fellow JDeveloper developer! I have been working with JSPX pages for over two years and I never had any problems with them being JSPX opposed to JSP. The choice for me to go with JSPX was kinda forced since I use JHeadstart to automatically generate ADF Faces pages and by default, JHeadstart generates everything in JSPX. JSPX specifies that the document has to be a well-formed XML document. This allows stuff to properly and efficiently parse it. I have heard developers say that this helps your pages be more 'future proof' opposed to JSP. | |||
|
feedback
|
|
@Matthew- I saw a "future proof" observation as well...but didn't know how well founded that was. | |||
|
feedback
|
|
JSPX is also the recommended view technology in Spring MVC / Spring Web Flow. | |||
|
feedback
|