14

Hibernateで、このJPQL/HQLクエリを実行したいと思います。

select new org.test.userDTO( u.id, u.name, u.securityRoles)
FROM User u
WHERE u.name = :name

userDTOクラス:

public class UserDTO {
   private Integer id;
   private String name;
   private List<SecurityRole> securityRoles;

   public UserDTO(Integer id, String name, List<SecurityRole> securityRoles) {
     this.id = id;
     this.name = name;
     this.securityRoles = securityRoles;
   }

   ...getters and setters...
}

ユーザーエンティティ:

@Entity
public class User {

  @id
  private Integer id;

  private String name;

  @ManyToMany
  @JoinTable(name = "user_has_role",
      joinColumns = { @JoinColumn(name = "user_id") },
      inverseJoinColumns = {@JoinColumn(name = "security_role_id") }
  )
  private List<SecurityRole> securityRoles;

  ...getters and setters...
}

しかし、Hibernate 3.5(JPA 2)を起動すると、次のエラーが発生します。

org.hibernate.hql.ast.QuerySyntaxException: Unable to locate appropriate 
constructor on class [org.test.UserDTO] [SELECT NEW org.test.UserDTO (u.id,
u.name, u.securityRoles) FROM nl.test.User u WHERE u.name = :name ]

結果としてリスト(u.securityRoles)を含む選択は不可能ですか?2つの別々のクエリを作成する必要がありますか?

4

3 に答える 3

11

NEW(スカラー値コレクション値のパス式を選択する)のないクエリは無効であるため、aを追加してもうまくいくとは思いませんNEW

ちなみに、これはJPA2.0仕様のセクション4.8SELECT句で述べられていることです。

SELECT句の構文は次のとおりです。

select_clause ::= SELECT [DISTINCT] select_item {, select_item}*
select_item ::= select_expression [ [AS] result_variable]
select_expression ::=
         single_valued_path_expression |
         scalar_expression |
         aggregate_expression |
         identification_variable |
         OBJECT(identification_variable) |
         constructor_expression
constructor_expression ::=
         NEW constructor_name ( constructor_item {, constructor_item}* )
constructor_item ::=
         single_valued_path_expression |
         scalar_expression |
         aggregate_expression |
         identification_variable
aggregate_expression ::=
         { AVG | MAX | MIN | SUM } ([DISTINCT] state_field_path_expression) |
         COUNT ([DISTINCT] identification_variable | state_field_path_expression |
                  single_valued_object_path_expression)
于 2010-04-20T21:57:13.893 に答える
1

クラスで0引数のコンストラクターを宣言する必要があると思いますUserDTO

編集:または最初の引数としてInteger代わりに取るコンストラクター。intリフレクションを使用してコンストラクターを検索する場合、Hibernateはそれらを「互換性のある」タイプとして扱わない場合があります。

Unable to locate appropriate constructor on class [...UserDTO]基本的に、私はメッセージの部分に焦点を合わせます。

于 2010-04-20T21:14:26.277 に答える
-2

私はあなたが次のようなことを試みるべきだと思います:

select new org.test.userDTO( u.id, u.name, u.securityRoles) AS uDTO,
  uDTO.setRoles(u.securityRoles)
 FROM User u
 WHERE u.name = :name
于 2011-06-02T01:21:48.673 に答える