0
私はエンティティとDTOの間の変換のために何かを実装しようとしています。Spring BeanUtilsがジェネリッククラスをインスタンス化できませんでした
public class BaseModel<Entity> implements Model<Entity> {
@Override
public Entity toEntity(Class<Entity> entityClass) {
Entity entityInstance = BeanUtils.instantiate(entityClass);
BeanUtils.copyProperties(this, entityInstance);
return entityInstance;
}
}
しかし、次のテストに合格しない:
私は私のDTOのベースクラス(と呼ばれるモデルを)持っている
public class BaseModelTest {
@Entity
public class SomeEntity {
@Id
private Long id;
private String name;
public SomeEntity() {
}
public SomeEntity(Long id, String name) {
this.id = id;
this.name = name;
}
public Long getId() {
return id;
}
public String getName() {
return name;
}
}
@Test
public void toEntity_givenEntityClass_shouldCreateNewInstance() throws Exception {
//given
BaseModel<SomeEntity> model = new BaseModel();
//when
SomeEntity entity = model.toEntity(SomeEntity.class);
//then
assertNotNull(entity);
}
}
Iまし例外:(事実にもかかわらず、デバッガのIの下であなたが必要とする新しいSomeEntity
インスタンスを作成するために
org.springframework.beans.BeanInstantiationException: Failed to instantiate [package.BaseModelTest$SomeEntity]: Is it an abstract class?; nested exception is java.lang.InstantiationException: package.BaseModelTest$SomeEntity
Caused by: java.lang.InstantiationException: package.BaseModelTest$SomeEntity
Caused by: java.lang.NoSuchMethodException: package.BaseModelTest$SomeEntity.<init>()
ありがとうございました!これは内部クラスの問題です。また、内部モデルクラスが "normal"クラスに置き換えられた場合にも機能します –
はい、 'SomeEntity.java'に' SomeEntity'を置くことで問題が解決されます。 –
@BTW JPAとJSR-303またはJackson注釈を混在させたくありません。 –