Standalone Tomcat allows you to enable TRACE HTTP method through allowTrace
attribute:
allowTrace - A
boolean
value which can be used to enable or disable the TRACE HTTP method. If not specified, this attribute is set tofalse
.
If I have to do that same for a Spring Boot project using embedded Tomcat - what kind of config/properties setting I can use for that?
I have looked for the properties supported by Spring Boot for Tomcat server:
but it seems to be not listed. Any thoughts how to achieve this.