JPA에서 @Repository에서 쿼리를 사용할 떄 주의할 점


JPA에서 @Repository에서 쿼리를 사용할 떄 주의할 점

사용쿼리 @Repository public interface AuthRepository extends JpaRepository<Auth, Long> { Auth findByUserIdAndUserPassword(String userId, String userPassword); @Modifying @Transactional @Query("UPDAT..

JPA에서 @Repository에서 쿼리를 사용할 떄 주의할 점에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


원문링크 : JPA에서 @Repository에서 쿼리를 사용할 떄 주의할 점