同上,求解

解决方案 »

  1.   

    Environment Property [hibernate.cglib.use_reflection_optimizer] has been renamed to [hibernate.bytecode.use_reflection_optimizer]; Put the following line in hibernate.properties:hibernate.cglib.use_reflection_optimizer=false
    It will make Hibernate start faster since it does not try to build cglib-enhanced objects to access getter/setters.Note: It will have in impact on overall runtime performance since Hibernate will be forced to use standard JDK reflection for access. So it is most useful during development. (You will also get better error messages in some situations when the optimizer is disabled