If your problem is not solved yet, please try the below changes. This works with Spring Boot-3, Spring Batch -5 and JDK 17.
@Configuration public class AvoidMetaDataConfiguration extends DefaultBatchConfiguration {
@NotNull
@Bean
public JobRepository jobRepository() {
return new ResourcelessJobRepository();
}
}