Spring Data projection does not work in the 3.2.0-RC2 version - if a function with projection is called, it fails with error: Invoked method public abstract java.lang.String com.example.demo.CustomerProjection.getFirstName() is no accessor method]

It works fine in 3.1.5

I've prepared a demo project with branches 3.1 and 3.2 where it can be reproduced by calling projection endpoint

Comment From: wilkinsona

Thanks for the sample and for trying the RC. Projections are a Spring Data feature and are largely out of Spring Boot's control. Your sample works fine when using the latest Spring Data snapshot:

ext {
    set("spring-data-bom.version", "2023.1.0-SNAPSHOT")
}

2023.1.0 will be used by Spring Boot 3.2.0 when it's released.