To disable JSP regeneration (which is by default off in EAP6) simple add the following to your web subsystem:
<configuration> <jsp-configuration development="false" /> </configuration>
Or with cli:
/subsystem=web/configuration=jsp-configuration:write-attribute(name=development,value=false)
Simply replace false with true to enable it.