博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring 延迟初始化
阅读量:4050 次
发布时间:2019-05-25

本文共 1215 字,大约阅读时间需要 4 分钟。

– Start


默认情况下,Spring 根据配置文件立即初始化所有对象,如果你想让 Spring 在第一次使用时初始化对象,你可以指定 lazy-init = true,下面是一个简单的例子。

package shangbo.spring.core.example12;public class OutPutService {	public void outPut() {		System.out.println("Hello World");	}}
package shangbo.spring.core.example12;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class App {	public static void main(String[] args) {		// 实例化 Spring IoC 容器		ApplicationContext context = new ClassPathXmlApplicationContext("example.xml", OutPutService.class);		// 从容器中获得 Service 对象		OutPutService printer = context.getBean(OutPutService.class);		// 使用对象		printer.outPut();	}}

我们也可以配置所有对象延迟初始化。

如果使用 Java 配置文件,我们可以使用 @Lazy 注解。

package shangbo.spring.core.example14;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.context.annotation.Lazy;@Configurationpublic class AppConfig {	@Bean	@Lazy(value = true)	public OutPutService outPutService() {		return new OutPutService();	}}

– 声 明:转载请注明出处
– Last Updated on 2017-06-17
– Written by ShangBo on 2017-05-21
– End

你可能感兴趣的文章
Idea下安装Lombok插件
查看>>
zookeeper
查看>>
Idea导入的工程看不到src等代码
查看>>
技术栈
查看>>
Jenkins中shell-script执行报错sh: line 2: npm: command not found
查看>>
8.X版本的node打包时,gulp命令报错 require.extensions.hasownproperty
查看>>
Jenkins 启动命令
查看>>
Maven项目版本继承 – 我必须指定父版本?
查看>>
通过C++反射实现C++与任意脚本(lua、js等)的交互(二)
查看>>
利用清华镜像站解决pip超时问题
查看>>
微信小程序开发全线记录
查看>>
CCF 分蛋糕
查看>>
解决python2.7中UnicodeEncodeError
查看>>
小谈python 输出
查看>>
Django objects.all()、objects.get()与objects.filter()之间的区别介绍
查看>>
python:如何将excel文件转化成CSV格式
查看>>
机器学习实战之决策树(一)
查看>>
机器学习实战之决策树二
查看>>
[LeetCode By Python]7 Reverse Integer
查看>>
[LeetCode By Python]121. Best Time to Buy and Sell Stock
查看>>