Bump Reactor BOM version in pom.xml
<properties>
	<reactor-bom.version>2024.0.0</reactor-bom.version>
</properties>In pom.xml add dependency to netty-incubator-codec-http3
<dependency>
	<groupId>io.netty.incubator</groupId>
	<artifactId>netty-incubator-codec-http3</artifactId>
	<version>0.0.28.Final</version>
	<scope>runtime</scope>
</dependency>In application.yml add the SSL configuration
ssl:
  bundle:
    jks:
      server-http3:
        key:
          alias: http3
        keystore: ...More information about SSL Bundle settings:
curl --http3 https://localhost:8443/ -v