Creating lazily initialized Spring beans using annotation based configuration

前端 未结 2 477
天涯浪人
天涯浪人 2021-01-05 19:35

I am using Spring\'s @Component annotation to configure many of the beans in my Spring 3.0 application. I would like to know if it\'s possible to construct some

2条回答
  •  有刺的猬
    2021-01-05 19:54

    To declare lazy-initialized bean you can use @Lazy annotation.

    Note, however, that it doesn't make sense for prototype beans - they can't be eagerly initialized, so there is no need to mark them lazy.

提交回复
热议问题