I am working on a small JSP project...and I want to add a configuration that is mentioned here : https://openliberty.io/docs/latest/reference/config/jspEngine.html
Specifically, i want to add keepGenerated ="true"
2 questions:
Is the location of this config corect? I just placed it inside the server element (not clear to me from the link from above if the location is good)
<server description="My Project"> <featureManager> <feature>servlet-5.0</feature> <!-- needed to run JSP examples --> <feature>pages-3.0</feature> </featureManager> <jspEngine keepGenerated ="true"/> .... </server>
Where will the java files corresponding to the JSP files be generated? I want to see the java code that is generated...
By adding the property from question 1, I was unable to find the java files generated for the JSP file....I tried to run also a search but no use..I assume that the configuration might not be correct..
Thx!