类不能被转换为java.lang.reflect.ParameterizedType(Class c

2019-07-29 09:55发布

目前VariableService@Autowired在我的控制器。

我知道我可以实现类ParameterizedType使这个错误消失,但我担心,我会在错误的方向前进。 有没有更好的办法做到这一点还是需要咬紧牙关和实施ParameterizedType的方法呢?

org.springframework.beans.factory.BeanCreationException:错误创建名为“contentController”豆:自动装配Autowired依赖注入失败; 嵌套的例外是org.springframework.beans.factory.BeanCreationException:无法自动装配领域:私人com.fettergroup.cmt.service.VariableService com.fettergroup.cmt.web.ContentController.variableService; 嵌套异常是org.springframework.beans.factory.BeanCreationException:错误创建具有名称豆“variableService”在ServletContext的资源定义[/WEB-INF/dispatcher-servlet.xml]:bean的实例化失败; 嵌套异常是org.springframework.beans.BeanInstantiationException:无法实例bean类[com.fettergroup.cmt.service.VariableService]:构造抛出异常; 嵌套的例外是java.lang.ClassCastException:java.lang.Class中不能转换为java.lang.reflect.ParameterizedType

可变服务

public class VariableService extends EntityService {
    public VariableService () {
        super.setEntityRepository(new VariableRepository());
    }
}

EntityService

public abstract class EntityService<T> {

    public EntityRepository<T> entityRepository;

    public T create(T entity) {
        return entityRepository.create(entity);
    }

    public T update(T entity) {
        return entityRepository.update(entity);
    }

    public void delete(T entity) {
        entityRepository.delete(entity);
    }

    public void setEntityRepository(EntityRepository<T> entityRepository) {
        this.entityRepository = entityRepository;
    }
}

可变信息库

public class VariableRepository extends EntityRepository {

}

EntityRepository

@Repository
public abstract class EntityRepository<T> {

    //the equivalent of User.class
    protected Class<T> entityClass;

    @PersistenceContext(type= PersistenceContextType.TRANSACTION)
    public EntityManager entityManager;

    public EntityRepository () {
        //Get "T" and assign it to this.entityClass
        ParameterizedType genericSuperclass = (ParameterizedType) getClass().getGenericSuperclass();
        this.entityClass = (Class<T>) genericSuperclass.getActualTypeArguments()[0];
    }

    /**
     * Create this entity
     * @param t
     * @return 
     */
    public T create(T t) {
        entityManager.persist(t);
        return t;
    }

    /**
     * Update this entity
     * @param t
     * @return 
     */
    public T update(T t) {
        return entityManager.merge(t);
    }

    /**
     * Delete this entity
     * @param entity 
     */
    public void delete(T t) {
        t = this.update(t);
        entityManager.remove(t);
    }

    public void setEntityManager(EntityManager entityManager) {
        this.entityManager = entityManager;
    }
}

Answer 1:

只是说,这是一个非常糟糕的设计确定的实体类型。您应该做到以下几点,而不是依靠反射DEF推断其类..它不仅将摆脱错误的,但是这将是整体清洁,在较低的水平,比反射更快(不,它真的是一个问题)。

@Repository
public abstract class EntityRepository<T>{
    protected Class<T> entityClass;

    public EntityRepository(Class<T> entityClass){
        this.entityClass = entityClass;
    }

    //...
}


public class UserEntityRepository extends EntityRepository<User>{
    public UserEntityRepository(){
        super(User.class);
    }
}


Answer 2:

EntityRepository不ParameterizedType类型。 这个类只扩展ParameterizedType。 这也是可能的,如果弹簧通过CGLIB代理你的类

我们需要检查类的家长

public EntityRepository () {
    //Get "T" and assign it to this.entityClass
    Type genericSuperClass = getClass().getGenericSuperclass();

    ParameterizedType parametrizedType = null;
    while (parametrizedType == null) {
        if ((genericSuperClass instanceof ParameterizedType)) {
            parametrizedType = (ParameterizedType) genericSuperClass;
        } else {
            genericSuperClass = ((Class<?>) genericSuperClass).getGenericSuperclass();
        }
    }

    entityClass = (Class<T>) parametrizedType.getActualTypeArguments()[0];
}


Answer 3:

看来你是滥用ParameterizedType 。 在EntityRepository构造函数,你应该使用像下面这样,用相应的检查。

public EntityRepository () {
    //Get "T" and assign it to this.entityClass
    ParameterizedType genericSuperclass = (ParameterizedType) getClass().getGenericSuperclass();
    Type type = genericSuperclass.getActualTypeArguments()[0];
    if (type instanceof Class) {
      this.entityClass = (Class<T>) type;
    } else if (type instanceof ParameterizedType) {
      this.entityClass = (Class<T>) ((ParameterizedType)type).getRawType();
    }
}

这种实现还远远没有完成,虽然,你也应该处理GenericArrayType值,以及嵌套ParameterizedType



Answer 4:

@Repository注解需要从类EntityRepository去除,以解决这个问题。

阅读此线程

java.lang.Class中不能被强制转换为java.lang.reflect.ParameterizedType



文章来源: Class cannot be cast to java.lang.reflect.ParameterizedType