問題タブ [spring-repositories]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
spring-boot - Spring データ リポジトリの拡張
<T> T findOrCreate(Supplier<Optional<T>> finder, Supplier<T> factory)
すべてのリポジトリにa を紹介したいと思います。新しいインターフェイスを作成しました
.
次に、RecipeIngredientRepository などの具象リポジトリでこのインターフェイスを使用します。
最終的にリポジトリをサービスに挿入すると、次の例外が発生します。
find
私のエンティティでプロパティを探していますRecipeIngredient
。私はそれをしたくありませんでした。これはJPA Query Methodsに関連していると思います。そのため、名前を から に変更し、findOrCreate
クエリxxx
メソッドの検出をバイパスします - 成功しませんでした。xxx
次に、プロパティを検索します。
春のデータがこのプロパティを探すのは何ですか? を使用してorg.springframework.boot:spring-boot-starter-data-jpa
います。