2

I added this config element to my server.xml -

<jspEngine keepGenerated ="true"/>

Will this generate compiled jsp to the disk somewhere? IF so where? My Open Liberty server started with no complaints about this config element, but I can't find the compile JSP pages anywhere.

Note, I'm trying to debug an issue with a JSP page & want to see how it compiled

Mr Smith
  • 3,318
  • 9
  • 47
  • 85

1 Answers1

0

Being that portions of the path where the java is saved depend on osgi and the app name, probably easiest to find them with a find command. From the server directory (same place where server.xml is): find . -name "_*.java"

Evan
  • 84
  • 5