| Set to override the default HTTP port to HTTPS port mappings of 80:443, and 8080:8443.
In a Spring XML ApplicationContext, a definition would look something like this:
<property name="portMappings"> <map> <entry key="80"><value>443</value></entry>
<entry key="8080"><value>8443</value></entry> </map> </property>
Parameters: newMappings - A Map consisting of String keys and String values, where for each entry the key is the stringrepresentation of an integer HTTP port number, and the value is the string representation of thecorresponding integer HTTPS port number. throws: IllegalArgumentException - if input map does not consist of String keys and values, each representing aninteger port number in the range 1-65535 for that mapping. |