with Spring boot version 3.0.3 :I solved it by removing JPA dependency Starter ( i dont need it completly)and I replaced it by spring-data-commons and spring-data-jpa
<!-- <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-jpa</artifactId><version>3.0.3</version></dependency> --><dependency><groupId>org.springframework.data</groupId><artifactId>spring-data-commons</artifactId><version>3.0.2</version></dependency><dependency><groupId>org.springframework.data</groupId><artifactId>spring-data-jpa</artifactId><version>3.0.2</version></dependency>