springboot 整合 listener
2021-03-02 13:28
标签:ebs pen tde 注解 location 图片 rgs print osi 详情请参考:《使用IDEA创建一个springboot项目》 ---------------------- springboot 整合 listener 标签:ebs pen tde 注解 location 图片 rgs print osi 原文地址:https://www.cnblogs.com/ios9/p/14406301.html一:用idea 创建 springboot 项目:
二:具体代码内容:
1:sringboot 整合 listener 方式一:
1:查看效果
1:FirstListener
package com.AlanCode.springBoot.Listener;
/**
* @author Alan_liu
* @Create 2021/2/16 10:58
*/
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
/**
*@program: SpringBootAddListtener
*@description: springboot 整合 listener 方式一:
*
*
* *传统spring 方式配置 listener 内容:
* *
2:ListenerApplication
package com.AlanCode.springBoot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
/**
* springboot 整合 listener 方式一
* @author Alan_Liu
*/
@SpringBootApplication
@ServletComponentScan
public class ListenerApplication {
public static void main(String[] args) {
SpringApplication.run(ListenerApplication.class, args);
}
}
/***
*
*
**注意:
**关于编写启动器需要注意的问题。
**启动器存放位置:启动器可以和controller 位于同一个包 package下,或者位于controller的上一级包。
**但是不能把该文件放到controller平行级的包或者其子包下。
* ServletComponentScan 含义:
* 在springboot 启动时候进行扫描@webServlet注解的所有servlet、filter类。并将该类实例化
*
* ***/
3: pom.xml
xml version="1.0" encoding="UTF-8"?>
project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
modelVersion>4.0.0modelVersion>
parent>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-parentartifactId>
version>2.4.2version>
relativePath/>
parent>
groupId>com.AlanCode.springBootgroupId>
artifactId>springBootAddListenerartifactId>
version>0.0.1-SNAPSHOTversion>
name>springBootAddListenername>
description>Demo project for Spring Bootdescription>
properties>
java.version>1.8java.version>
properties>
dependencies>
dependency>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-webartifactId>
dependency>
dependency>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-testartifactId>
scope>testscope>
dependency>
dependencies>
build>
plugins>
plugin>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-maven-pluginartifactId>
plugin>
plugins>
build>
project>
上一篇:学习JAVA的第二天
下一篇:JavaScript事件处理
文章标题:springboot 整合 listener
文章链接:http://soscw.com/index.php/essay/59054.html