Reputation: 318
What I am basically trying to do is to run a query and put the result within the object of the class Account
. What is very important to emphasize is that the query performs a JOIN between 2 tables THAT ARE NOT MAPPED as @Entity
. So how can I do that?
This is my FooRepository.java class
@Repository
public interface FooRepository extends JpaRepository<Foo, Long> {
Foo findById(Long id);
@Query(value = "SELECT Q1.ACCOUNT_NAME," +
"Q2.GROUP_NAME " +
"FROM USERS_DEV Q1\n" +
"JOIN USERS_GROUPS Q2 ON Q1.ACCOUNT_NAME = Q2.ACCOUNT_NAME\n" +
"WHERE LOWER(Q1.ACCOUNT_NAME) = 'john.pit'", nativeQuery = true)
List<Account> getAllAccounts();
So how can I change my query to get the desired result?
And here is my Account.java class
public class Account {
String samAccountName;
String groupName;
public Account(String accountName, String groupName) {
this.accountName = accountName;
this.groupName = groupName;
}
public String getAccountName() {
return accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
}
public String getGroupName() {
return groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
}
Upvotes: 1
Views: 1468
Reputation: 13111
As an alternative you can use @NamedNativeQuery
with @SqlResultSetMapping
in the following way:
@Entity
@NamedNativeQuery(
name = "findAllAccounts",
query =
"SELECT " +
" Q1.ACCOUNT_NAME AS accountName, " +
" Q2.GROUP_NAME AS groupName " +
"FROM USERS_DEV Q1 " +
"JOIN USERS_GROUPS Q2 ON Q1.ACCOUNT_NAME = Q2.ACCOUNT_NAME " +
"WHERE LOWER(Q1.ACCOUNT_NAME) = 'john.pit'",
resultSetMapping = "findAllAccountsMapping"
)
@SqlResultSetMapping(
name = "findAllAccountsMapping",
classes = @ConstructorResult(
targetClass = Account.class,
columns = {
@ColumnResult(name="accountName"),
@ColumnResult(name="groupName"),
}
)
)
public class Foo {
// ...
}
and FooRepository
:
@Repository
public interface FooRepository extends JpaRepository<Foo, Long> {
@Query(name = "findAllAccounts", nativeQuery = true)
List<Account> getAllAccounts();
}
See hibernate documentation for additional details.
Upvotes: 0
Reputation: 361
Maybe I'm wrong, but i remember you can do the follow (with HQL):
@Query("select new Account(u.name, g.groupName) " +
"from User as u" +
"join u.group as g" +
"where LOWER(u.name) = 'john.pit'")
Syntax could be wrong, but I'm sure you can use DTO constructor in select statement if you use HQL.
Hope this will helps you :D
Upvotes: 1
Reputation: 26076
You can use EntityManager
and ResultTransformer
:
entityManager.createNativeQuery(
"SELECT Q1.ACCOUNT_NAME," +
"Q2.GROUP_NAME " +
"FROM USERS_DEV Q1 " +
"JOIN USERS_GROUPS Q2 ON Q1.ACCOUNT_NAME = Q2.ACCOUNT_NAME " +
"WHERE LOWER(Q1.ACCOUNT_NAME) = 'john.pit'"
)
.unwrap(NativeQuery.class)
.setResultTransformer(new ResultTransformer() {
@Override
public Object transformTuple(Object[] tuple, String[] aliases) {
return new Account(
(String) tuple[0],
(String) tuple[1]
);
}
@Override
public List transformList(List collection) {
return collection;
}
})
.getResultList();
A cast might be needed.
Upvotes: 1