Declaring a user-defined WebServerFactory should make sure the auto-configuration backs off #24706
Open
Description
See #24705
We initially designed things this way because we wanted an easy way for users to opt-in for the embedded server of their choices if they happen to have two on the classpath and the one the auto-configuration picked was not the one they wanted to use.
This corner case makes the auto-configuration at odds with others. If you register a WebServerFactory
the customizers are applied anyway. This means also that whatever you configure in the factory itself is likely to be lost since default opinions are going to be applied after that.
Changing this behaviour is a breaking change that could surprise more than one user. We may want to keep the current behaviour , perhaps using a configuration property. This would help users to migrate.