-
-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for compound keys defined using @IdClass
#141
Comments
Hi, Thanks for using this framework. I completely understand your pain, which is what got me to implement this framework in the first place. TL;DR I will try to implement this feature as soon as possible. BackgroundCurrently the SolutionThe first order of business is to add @Embeddable
public class AccountOwnershipKey implements Serializable {}
@Entity
public class AccountOwnership {
@EmbeddedKey
private AccountOwnershipKey key;
}
public interface AccountOwnershipRepository<AccountOwnership, AccountOwnershipRepository> {
// omitted for brevity
}
final AccountOwnershipRepository repository = builder()
.withoutGeneratingKeys()
.mock(AccountOwnershipRepository.class); For better support, it would be more extensible to add one level of indirection between keys and data stores, so that there is a Using
|
@IdClass
So, started working on this with the following entity class as a sample: package com.mmnaseri.utils.samples.spring.data.jpa.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.IdClass;
/**
* @author Mohammad Milad Naseri ([email protected])
* @since 1.0 (7/18/16)
*/
@Entity
@IdClass(AccountAccessKey.class)
public class AccountAccess {
@Id
@Column
private String userId;
@Id
@Column
private String accountId;
@Column
private AccountAccessType accessType;
public String getUserId() {
return userId;
}
public AccountAccess setUserId(String userId) {
this.userId = userId;
return this;
}
public String getAccountId() {
return accountId;
}
public AccountAccess setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public void setAccessType(AccountAccessType accessType) {
this.accessType = accessType;
}
public AccountAccessType getAccessType() {
return accessType;
}
} and the following repository definition: package com.mmnaseri.utils.samples.spring.data.jpa.repository;
import com.mmnaseri.utils.samples.spring.data.jpa.model.AccountAccess;
import com.mmnaseri.utils.samples.spring.data.jpa.model.AccountAccessKey;
import com.mmnaseri.utils.samples.spring.data.jpa.model.AccountAccessType;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.List;
/**
* @author Mohammad Milad Naseri ([email protected])
* @since 1.0 (7/18/16)
*/
public interface AccountAccessRepository extends JpaRepository<AccountAccess, AccountAccessKey> {
List<AccountAccess> findByUserId(String userId);
List<AccountAccess> findByUserIdAndAccessType(String userId, AccountAccessType accessType);
List<AccountAccess> findByAccountIdAndAccessType(String accountId, AccountAccessType accessType);
} These are examples taken from the |
Hello, I am working with Spring Boot tests, using Spring Data Mock and I am facing this issue. I noticed that your have started working on it, and I would like to know if you have any update regarding it. Thanks, |
Hi.
I have JPA entity which uses composite primary key:
Everything works as expected using spring-data repository backed by postgresql, but trying to create spring-data-mock thows an exception:
It would be absolutely awesome if this would be supported by spring-data-mock, because i don't need to bring up the whole spring context for testing.
The text was updated successfully, but these errors were encountered: