Today I Learned
@Repository public interface PostRepository extends JpaRepository<Post, Long> { List<Post> findByTitle(String title); }