
Spring
书之岁华
这个作者很懒,什么都没留下…
展开
-
org.springframework.beans.factory.BeanNotOfRequiredTypeException
org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named '*' must be of type [*], but was actually of type [com.sun.proxy.$Proxy34] 检查注解的名字是否和类型名一致,Spring注入失败导致的错误。 //修改前 @Resourc...转载 2018-10-26 16:05:58 · 474 阅读 · 0 评论 -
Spring懒加载
1、Spring懒加载 lazy-init:指定懒加载的方式创造对象。 lazy-init="true" //懒,真正调用到的时候再加载对象 lazy-init="false" //非懒,启动spring容器就创建对象 lazy-init="default" //默认:懒原创 2018-10-24 19:51:52 · 649 阅读 · 0 评论