[JPA] Named parameter not bound: ~ 작성한 쿼리를 테스트 하기위해 테스트 코드 작성한 것을 실행해보았다. //쿼리 public interface FaultJpaRepository extends JpaRepository { @Query(value = "select f from Fault f" + " where f.resolveTime is null" + " and (f.type =: type1 or f.type =: type2)" + " order by f.writeTime desc") List findBmsWarning(@Param("type1") int type1, @Param("type2") int type2); } @Test void findBmsWarningQueryTe..