Locate all jsp files in the webapp. Used if no explicit jsps are specified. Scan is performed via the ServletContext and will include any JSPs located in resource JARs.
()
| 1467 | * ServletContext and will include any JSPs located in resource JARs. |
| 1468 | */ |
| 1469 | public void scanFiles() { |
| 1470 | // Make sure default extensions are always included |
| 1471 | if ((getExtensions() == null) || (getExtensions().size() < 2)) { |
| 1472 | addExtension("jsp"); |
| 1473 | addExtension("jspx"); |
| 1474 | } |
| 1475 | |
| 1476 | scanFilesInternal("/"); |
| 1477 | } |
| 1478 | |
| 1479 | |
| 1480 | private void scanFilesInternal(String input) { |
no test coverage detected