問題タブ [spring-boot-jpa]
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.
java - カスタム spring-boot-starter で spring-boot-starter-jpa を使用するにはどうすればよいですか?
カスタムスターターがあります。その中で、リポジトリを定義します。構成でどのように定義すればよいですか? これは私が以前に通常の豆をやった方法です。
リポジトリ:
そして構成
このスターターを使用すると、コンテキストはリポジトリ Bean を認識しません。構成で宣言していなかったので、宣言の仕方がわかりません。
spring-boot-jpa - Spring Boot JPA Select 特定の列の結果は JSON 形式にする必要があります
Spring Boot JPA select 特定の列の結果は JSON 形式にする必要があります
@Query(value = "SELECT id, property_id, display_name FROM property_basic_property_details WHERE status='1' and unique_id=:unique_id", nativeQuery = true) public List propertydisplayname(String unique_id);
エラー:
クエリを実行出来ませんでした; SQL [SELECT id, property_id, display_name FROM property_basic_property_details WHERE status='1' and unique_id=?]
出力:
{ { "id":1, "property_id":pp_001, "display_name":test1, }, { "id":2, "property_id":pp_002, "display_name":test2, }, }