問題タブ [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.

0 投票する
2 に答える
2847 参照

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います。