I have spring contoller, also apache + mod_jk + tomcat. So after making an requesto to my controller in the response I am getting jsp source code
mod_jk config:
<VirtualHost <some ip>:8000>
ServerName <host>
ServerAlias <alias>
DocumentRoot <path>
JkMountCopy On
</VirtualHost>
JkWorkersFile <path>/workers.properties
JkMount /app* worker1
workers.properties
worker.list=worker1
worker.worker1.port=18001
worker.worker1.secret=some_secret
worker.worker1.host=localhost
How I understand apache sucessefully receives request => mod_jk redirects it to spring controller. Question is what happens next? Does spring converts response body to the jsp page, and forward it to apache? How can i fix this issue?