Java Spring WEB应用实例化如何实现

网友投稿 229 2023-02-15

Java Spring WEB应用实例化如何实现

1.前面讲解的都是通过直接读取配置文件,进行的实例化ApplicationContext

AbstractApplicationContext app = new ClassPathXmlApplicationContext("beans.xml");

下面讲解直接通过配置文件进行初始化。

2.web.xml

contextConfigLocation

xdoeXaclasspath:beans.xml

org.springframework.web.context.ContextLoaderListener

这样,ApplicationContext便已经实例化了,默认就直接加载了beans.xml里面的内容。

来看看底层的代码,类ContextLoaderListener中有个初始化方法

public void contextInitialized(ServletContextEvent event) {

this.contextLoader = createContextLoader();

if (this.contextLoader == null) {

this.contextLoader = this;

}

this.contextLoader.initWebApplicationContext(event.getServletContext());

}

进入initWebApplicationContext方法 :

ApplicationContext parent = loadParentContext(servletContext);

// Store context in local instance variable, to guarantee that

// it is available on ServletContext shutdown.

this.context = createWebApplicationContext(servletContext, parent);

这句也就是容器加载的结果。

1和2一个是java代码一个是xml代码,不过实现的效果都是一样的。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:IDEA 2019.2.2配置Maven3.6.2打开Maven项目出现 Unable to import Maven project的问题
下一篇:如何将默认的maven仓库改为阿里的maven仓库
相关文章

 发表评论

暂时没有评论,来抢沙发吧~