Java Spring WEB应用实例化如何实现
作者:手撕高达的村长
这篇文章主要介绍了Java Spring WEB应用实例化如何实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1.前面讲解的都是通过直接读取配置文件,进行的实例化ApplicationContext
AbstractApplicationContext app = new ClassPathXmlApplicationContext("beans.xml");
下面讲解直接通过配置文件进行初始化。
2.web.xml
<context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:beans.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
这样,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代码,不过实现的效果都是一样的。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Java基础之spring5新功能学习
- Java Spring5学习之JdbcTemplate详解
- Java基础之Spring5的核心之一IOC容器
- SpringBoot+JavaMailSender实现腾讯企业邮箱配置
- Spring通过Java配置集成Tomcat的方法
- java、spring、springboot中整合Redis的详细讲解
- Java中Spring Boot支付宝扫码支付及支付回调的实现代码
- Spring的@Validation和javax包下的@Valid区别以及自定义校验注解
- 最优雅地整合 Spring & Spring MVC & MyBatis 搭建 Java 企业级应用(附源码)
- Java Spring数据单元配置过程解析
- Java Spring事务使用及验证过程详解
- Spring5学习之基础知识总结