浅谈Spring Context加载方式

网友投稿 228 2023-01-30


浅谈Spring Context加载方式

Spring 加载方式

对于可执行文件方式,我们一般的加载Spring 配置的方式是

ClassPathXmlApplicationContext

public static void main(String[] args) {

ClassPathXmlApplicationContext xmlApplicationContext = new ClassPathXmlApplicationContext("classpath:spring-context.xml");

DemoService demoService = (DemoService) xmlApplicationContext.getBean("demoService");

String text = demoService.hello();

System.out.println(text);

}

xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context"

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

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

http://springframework.org/schema/context

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

default-autowire="byName" default-lazy-init="false">

xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context"

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

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

http://springframework.org/schema/context

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

default-autowire="byName" default-lazy-init="false">

从spring 3.0开始,开始使用注解的方式来进行spring 配置的注册

public static void main(String[] args) {

AnnotationConfigApplicationContext annotationConfigApplicationContext = new AnnotationConfigApplicationContext();

// 告诉要扫描的包,通常是应用的根目录的Applicatihttp://on类

annotationConfigApplicationContext.scan(Main.class.getPackage().getName());

// 刷新上下文,使用得相应的bean注册成功

annotationConfigApplicationContext.refresh();

// 通过名称的方式获取相应的DemoService

DemoService demoService = (DemoService) annotationConfigApplicationContext.getBean("demoService");

String text = demoService.hello();

System.out.println(text);

}

demoService是定义的一个Service的名称,xml配置的方式也是可以设定好是否采用注解的方式进行扫描,如1中的

demoService 很简单,如下的方式

@Service(value = "demoService")

public class DemoService {

public String hello() {

return "hello world";

}

}

Web应用的初始化

web.xml配置方式

注解的方式

web.xml 配置方式

利用spring 自带的Servlet 进行初始注册

SpringMVC

org.springframework.web.servlet.DispatcherServlet

http://

contextConfigLocation

classpath:spring/spring-context.xml

1

true

SpringMVC

/

利用 Listener进行注册 ,像Spring+structs,就是以这种方式来初始化上下文内容的

org.springframework.web.context.ContextLoaderListener

org.springframework.web.context.request.RequestContextListener

注解的方式

也是利用Servlet的方式来配置初始化参数,不过这次里要用基于注解的类AnnotationConfigWebApplicationContext,同时要注册Servlet

@Override

public void onStartup(ServletContext servletContext) throws ServletException {

ServletRegistration.Dynamic dispatcher = servletContext.addServlet("dispatcher", DispatcherServlet.class);

dispatcher.setInitParameter("contextConfigLocation", getClass().getName());

dispatcher.setInitParameter("contextClass", AnnotationConfigWebApplicationContext.class.getName());

dispatcher.addMapping("/*");

dispatcher.setLoadOnStartup(1);

}


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

上一篇:Java实现对字符串中的数值进行排序操作示例
下一篇:vue通过点击事件读取音频文件的方法
相关文章

 发表评论

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