I'm using Java 7, Spring-Boot 1.1.7 and an ambeded Tomcat 7.
In the past, when I used a stand alone Tomcat, I used to add an http connector, that will redirect the requests to the HTTPS port :
<Connector port="8080" enableLookups="false"
redirectPort="8443" />
How can I do it when I'm using an embeded Tomcat (and I dont have a server.xml file) ?