JSP-specific features and guidance
Table of Contents Language Info for Java Server Pages What is currently supported and what is notIn short, JSP files that are XHTML-compliant, are supported. Except for files that contain inline DTDs; only references to external DTD files are supported (having inline DTD will result in a parsing error).
The XHTML support means that:
opening tags must be accompanied by corresponding closing tags (or they must be empty tags). This means that currently a â<HR>â tag without corresponding closing tag will result in a parsing error.
attribute values must be surrounded by single or double quotes. This means that the following syntax will result in a parsing error:
<MyTag myAttr1=true myAttr2=1024/>
< and > characters must be escaped, or put inside a CDATA section.
PMD creates a âAbstract Syntax Treeâ representation of source code; the rules use such a tree as input. For JSP files, the following constructs are parsed into nodes of the tree:
Java code (e.g. in JSP-scriptlets) and EL expressions are not parsed or further broken down. If you want to create rules that check the code inside EL expressions or JSP scriptlets (a.o.), you currently would have to do âmanualâ string manipulation (e.g. using regular expressions).
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4