I need to configure AJP connector in embedded tomcat https://tomcat.apache.org/tomcat-8.0-doc/config/ajp.html Equals to the following configuration:
<Connector port="8009" protocol="AJP/1.3" redirectPort="8080" />
How to do it?
I need to configure AJP connector in embedded tomcat https://tomcat.apache.org/tomcat-8.0-doc/config/ajp.html Equals to the following configuration:
<Connector port="8009" protocol="AJP/1.3" redirectPort="8080" />
How to do it?
From the startup logs:
http-nio
is listening on port 8080 andajp-nio
on port 8009.