Property Population在使用不可变对象时无法正常工作。
我正在尝试遵循Property Population的spring-data-couchbase-3.1.4.RELEASE reference docs部分,这表明我可以使用一种用于设置id的适当@wither
方法来传递一个不可变的实体。但是,当我尝试使用该方法时,返回的实体ID的值仍然为null
。
com/example/demospringdatacouchbaseapp/model/Car.java
import static org.springframework.data.couchbase.core.mapping.id.GenerationStrategy.USE_ATTRIBUTES;
import org.springframework.data.couchbase.core.mapping.Document;
import org.springframework.data.couchbase.core.mapping.id.GeneratedValue;
import org.springframework.data.couchbase.core.mapping.id.IdAttribute;
import com.couchbase.client.java.repository.annotation.Field;
import com.couchbase.client.java.repository.annotation.Id;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Value;
import lombok.experimental.Wither;
@Value
@AllArgsConstructor
@Builder(toBuilder=true)
@Document
public class Car {
public static final String ID_DELIMITER = ".";
@Id
@GeneratedValue(strategy = USE_ATTRIBUTES, delimiter = ID_DELIMITER)
@Wither
String id;
@Field
@IdAttribute(order=0)
String manufacturer;
@Field
@IdAttribute(order=1)
String model;
@Field
@IdAttribute(order=2)
String spec;
@Field
String colour;
}
com/example/demospringdatacouchbaseapp/repository/CarRepository.java
import java.util.Collection;
import org.springframework.data.couchbase.repository.CouchbaseRepository;
import com.example.demospringdatacouchbaseapp.model.Car;
public interface CarRepository extends CouchbaseRepository<Car, String> {
Collection<Car> findByColour(String colour);
}
@Test
public void createSingCarTest() {
/*
* Given
*/
Car givenCar = createMadWeeClio();
/*
* When
*/
Car persistedCar = repository.save(givenCar);
/*
* Then
*/
assertThat(persistedCar).isEqualTo(givenCar.withId(getExpectedId(givenCar)));
}
...
private String getExpectedId(Car givenCar) {
return givenCar.getManufacturer() + Car.ID_DELIMITER + givenCar.getModel() + Car.ID_DELIMITER
+ givenCar.getSpec();
}
private Car withExpectedId(Car car) {
return car.withId(getExpectedId(car));
}
private Car createMadWeeClio() {
return Car.builder().manufacturer("RenaultSport").model("Clio").spec("200 Cup").colour("white")
.build();
}
private Car createMadMeg() {
return Car.builder().manufacturer("RenaultSport").model("Megane").spec("R.S Trophy")
.colour("Yellow").build();
}
我期望CouchbaseRepository::save
操作返回一个我的不可变实体对象的新实例,并填充了自动生成的ID属性。但是,在我的测试中,它以null
的身份返回。
传递可变实体会导致id字段设置为预期值。我还可以看到ID字段填充在了沙发床中。
答案 0 :(得分:1)
我认为问题在于save
操作没有创建您的Car
对象的新实例-而是它将尝试将id设置到该对象上(但由于其不可变而不能)。
@Value
龙目岛注解的结果类似于
Car withId(String id) {
return new Car(id, this.model, this.spec, this.colour);
}
但是当您save
对象时不会调用此方法。
从数据库中检索对象时,将调用withId
方法。因此,如果您从数据库返回所有对象(或使用其他条件(例如模型)搜索它),您会发现它们实际上具有带值的id属性。文档在这里介绍: