问题 In my Spring JPA Project, I have a repo file as such: @Repository public interface StudentRepository extends JpaRepository<Student, Integer>{ @Query(value = "select * from students", nativeQuery = true) public List<Student> findStudents( @Param("keyword") String keyword ); } With this, I can still copy paste the SQL and run in my DB software. But when it comes to large queries as such: @Query(value = "SELECT\n" + "*\n" + "FROM\n" + "students\n" + "WHERE\n" + "(\n" + "`id` LIKE CONCAT('%',