Remove usages of deprecated Connector.setAttribute()

See gh-21671
This commit is contained in:
dreis2211 2020-06-03 17:41:12 +02:00 committed by Stephane Nicoll
parent eb38eeaf30
commit 9bb22ffb69

View File

@ -160,11 +160,11 @@ public class TomcatWebServerFactoryCustomizer
}
private void customizeRelaxedPathChars(ConfigurableTomcatWebServerFactory factory, String relaxedChars) {
factory.addConnectorCustomizers((connector) -> connector.setAttribute("relaxedPathChars", relaxedChars));
factory.addConnectorCustomizers((connector) -> connector.setProperty("relaxedPathChars", relaxedChars));
}
private void customizeRelaxedQueryChars(ConfigurableTomcatWebServerFactory factory, String relaxedChars) {
factory.addConnectorCustomizers((connector) -> connector.setAttribute("relaxedQueryChars", relaxedChars));
factory.addConnectorCustomizers((connector) -> connector.setProperty("relaxedQueryChars", relaxedChars));
}
private String joinCharacters(List<Character> content) {