You need to re-read the answers to these questions. SNI is not supported on the server side until Java 8. The minimum version of Java that Tomcat 8 must support is Java 7, so there is currently no Tomcat SNI support.
It may be possible to support SNI if Tomcat runs on Java 8 or later, but Tomcat will require code changes for which there are currently no plans.
December 2014 update:
Adding SNI support is in TODO for Tomcat 9. This TODO list is quite long, and SNI is not currently at the top of the list. As always, patches are welcome.
Once SNI is implemented in Tomcat 9, perhaps SNI support can be ported back to Tomcat 7 and Tomcat 8. Again, a fixed trick.
Update as of June 2015:
SNI was implemented for Tomcat 9. It is supported by all three HTTP connector implementations (NIO, NIO2, and APR / native). To use SNI with NIO or NIO2, you will need to compile Tomcat 9 (aka trunk) from the source. To use SNI with APR / native, you will also need to compile tc-native trunk ( not the 1.1.x branch currently used by Tomcat versions ).
TLS configuration has changed significantly to support SNI. Details will be in the docs web application after building Tomcat 9.
November 2016 Update:
SNI support is included in Tomcat 8.5.x. It is unlikely that he will be moved on. that is, it is unlikely that it will reach 8.0.x or 7.0.x.
source share