当前位置:首页>财经>正文

spring监听器怎么用? 启动时找不到 spring 监听器

2023-06-21 05:59:27 互联网 未知 财经

 spring监听器怎么用? 启动时找不到 spring 监听器

spring监听器怎么用?

系统启动的时候,系统自动加载org.springframework.web.context.ContextLoaderListener这个类,然后由它负责创建Spring容器即WebApplicationContext,系统会把bean放在其中,一般情况下,创建完成后,负责IOC操作,你不需要获取它,如果非要在程序中调用它,可以通过WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext)来获取这个容器。

启动时找不到 spring 监听器

在web.xml里配了么

org.springframework.web.context.ContextLoaderListener


相应jar包:
spring-web-3.1.2.RELEASE.jar

如何使用spring的redis监听

pom.xml中添加如下配置
添加版本配置

2.8.1
1.7.2.RELEASE
2.2



redis.clients
jedis
${jedis.version}



org.apache.commons
commons-pool2
${commons-pool2.version}

springboot怎么定义监听加载的顺序

Spring Boot 所提供的配置优先级顺序比较复杂。按照优先级从高到低的顺序,具体的列表如下所示。
命令行参数。
通过 System.getProperties() 获取的 Java 系统参数。
操作系统环境变量。
从 java:comp/env 得到的 JNDI 属性。
通过 RandomValuePropertySource 生成的“random.*”属性。
应用 Jar 文件之外的属性文件。(通过spring.config.location参数)
应用 Jar 文件内部的属性文件。
在应用配置 Java 类(包含“@Configuration”注解的 Java 类)中通过“@PropertySource”注解声明的属性文件。
通过“SpringApplication.setDefaultProperties”声明的默认属性。
Spring 可以 利用@Order控制配置类的加载顺序

Spring 怎么配置在非web项目里

只需在web.xml中增加一个spring的监听就好了,这样子每次启动tomcat就会读取配置文件 ,当然也可以在方法中来读取配置文件,你要的配置是

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>