failed with following dependency org.springframework.boot spring-boot-starter-webflux again tried by excluding netty still same issue

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-webflux</artifactId>
        <exclusions>
            <exclusion>
                <artifactId>spring-boot-starter-reactor-netty</artifactId>
                <groupId>org.springframework.boot</groupId>
            </exclusion>
        </exclusions>
    </dependency>

Comment From: snicoll

@HarshaVardhanAcharyAthaluri this error indicates that you have most likely incompatible versions on the classpath. Without sharing the version that you are using in the form of a sample project, it will be very hard for us to help you.

Comment From: spring-projects-issues

If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed.

Comment From: HarshaVardhanAcharyAthaluri

after updating jetty version its working

Comment From: snicoll

Glad you got it resolved.