Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

16 строки
645 B
Plaintext

https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#jpa.query-methods.at-query.native
@Query(value="...", nativeQuery = true)
@NamedNativeQuery
public interface UserRepository extends JpaRepository<User, Long> {
@Query(value = "SELECT * FROM USERS WHERE EMAIL_ADDRESS = ?1", nativeQuery = true)
User findByEmailAddress(String emailAddress);
}
2022
https://www.baeldung.com/spring-data-jpa-query
!!!
CodeJava - Spring Data JPA Native Query Examples of 16:39
https://www.youtube.com/watch?v=yXwHu6g-wlY
https://www.codejava.net/frameworks/spring-boot/spring-data-jpa-native-query-examples