Closed MANIKUMAR98 closed 5 months ago
Thank you for reporting the issue. The provided snippet is using plain JPA without any Spring Data involvement. So it is very likely that you've hit an issue with the underlying persistence provider. Please report the issue to the Hibernate Team for further investigation. It would be great if you could leave a comment on this issue linking to the hibernate one for others to find. Thank you!
In earlier version of Spring Boot 2.7, parameters were treated as named parameters, allowing flexibility in their order. However, after upgrading to Spring Boot version 3.2.5, parameters are now treated as positional parameters, requiring adherence to their specified order. I want it to behave as named parameter itself. Below is the detailed description of code.
Spring boot version- 3.2.5 Database- Microsoft SQL server
Dependencies using:
Creating connection:
Calling database using entity manager:
FYI, all imports previously from javax had to be changed to jakarta in Spring Boot 3