2

Spring Boot と postgres の操作。データベースに階層データがあり、パスが ltree 列に格納されています。パスに基づいて特定のオブジェクトを取得しようとしていますが、データベースのクエリに問題があります。

モデルクラス:

@Entity
@Table(schema = "devschema", name = "family")

public class Family {

    @Id
    @Column(name = "member_id")
    private Long memId;

    @Column(name = "name")
    private String memName;

    @Column(name = "fam_path",  columnDefinition="ltree")
    private String familyPath;

    ... getters and setters
}

リポジトリ クラス:

  public interface OrgRepository extends PagingAndSortingRepository <Family, Long>{

    public Family findByMemId(Long id);
    public Family findByMemName(String memName);

    @Query("select f from Family f where familyPath = ?1")
    public Family findByPath(String path);
    }

path という名前の文字列変数としてパスを渡す、コントローラーからの呼び出し:

desiredMember = familyRepository.findByPath(パス);

次のエラーが発生します。

2016-02-15 20:41:06.430 ERROR 88677 --- [nio-8080-exec-1] o.h.engine.jdbc.spi.SqlExceptionHelper   : ERROR: operator does not exist: devschema.ltree = character varying
  Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
  Position: 397
2016-02-15 20:41:06.449 ERROR 88677 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception  is org.springframework.dao.InvalidDataAccessResourceUsageException: could not extract ResultSet; SQL [n/a]; nested exception is  org.hibernate.exception.SQLGrammarException:  could not extract ResultSet] with root cause

org.postgresql.util.PSQLException: ERROR: operator does not exist: fhschema.ltree = character varying
  Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
  Position: 397

f をテキストにキャストしようとしましたが、役に立ちませんでした。誰でも問題を解決する方法の手がかりを持っていますか?

4

2 に答える 2

1

間違った演算子を選択しました。

@><@などの使用可能な演算子は次のとおりです。

postgres ltree ドキュメント

于 2016-06-25T01:50:45.150 に答える