Spring @Lazy懒加载注解-全局懒加载

https://blog.51cto.com/itShareArea/5081958


全局配置懒加载

https://blog.csdn.net/zhaoyi666/article/details/104954778

为全局配置懒加载


<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns=“http://www.springframework.org/schema/beans”


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 


    xsi:schemaLocation="http://www.springframework.org/schema/beans 


    http://www.springframework.org/schema/beans/spring-beans-3.2.xsd"


    default-lazy-init="true"


    >

 

    <bean id="cart" class="cn.tedu.beans.Cart"></bean>