java项目启动时,执行某方法

devtools/2025/1/15 3:02:59/

1. J2EE项目

在Servlet类中重写init()方法,这个方法会在Servlet实例化时调用,即项目启动时调用。

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;public class MyServlet extends HttpServlet {@Overridepublic void init() throws ServletException {super.init();// 在项目启动时执行的代码System.out.println("Servlet 初始化时执行的代码");}
}

配置web.xml

web.xml文件中配置Servlet,以确保它在项目启动时加载。

<servlet><servlet-name>myServlet</servlet-name><servlet-class>com.example.MyServlet</servlet-class><load-on-startup>1</load-on-startup>
</servlet>

<load-on-startup>元素的值为1,表示Servlet将在项目启动时加载。

2. Spring框架,使用@PostConstruct注解

import javax.annotation.PostConstruct;
import org.springframework.stereotype.Component;@Component
public class MyComponent {@PostConstructpublic void init() {// 在项目启动时执行的代码System.out.println("Spring @PostConstruct 初始化时执行的代码");}
}

3. Spring框架,使用ApplicationListener接口

Spring的ApplicationListener接口允许我们监听Spring应用上下文的启动事件,从而在项目启动时执行代码。 

import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;@Component
public class MyApplicationListener implements ApplicationListener<ContextRefreshedEvent> {@Overridepublic void onApplicationEvent(ContextRefreshedEvent event) {// 在项目启动时执行的代码System.out.println("Spring ApplicationListener 初始化时执行的代码");}
}

4. Spring框架,实现CommandLineRunner或ApplicationRunner接口

实现CommandLineRunner接口,并重写run方法。

import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;@Component
public class MyCommandLineRunner implements CommandLineRunner {@Overridepublic void run(String... args) throws Exception {// 在项目启动时执行的代码System.out.println("Spring CommandLineRunner 初始化时执行的代码");}
}

实现ApplicationRunner接口,并重写run方法。

import org.springframework.boot.ApplicationRunner;
import org.springframework.boot.ApplicationArguments;
import org.springframework.stereotype.Component;@Component
public class MyApplicationRunner implements ApplicationRunner {@Overridepublic void run(ApplicationArguments args) throws Exception {// 在项目启动时执行的代码System.out.println("Spring ApplicationRunner 初始化时执行的代码");}
}


http://www.ppmy.cn/devtools/150561.html

相关文章

window.print()预览时表格显示不全

问题描述&#xff1a;使用element的table组件&#xff0c;表格列宽为自适应&#xff0c;但使用window.print()方法预览的页面会直接按预览宽度截取表格内容进行展示&#xff0c;造成表格可能的显示不全问题 解决方法&#xff1a;添加如下样式 media print {::v-deep {// 表头…

CSS语言的数据类型

CSS语言的数据类型详解 引言 CSS&#xff08;层叠样式表&#xff09;是一种用来描述HTML文档外观的样式表语言。尽管CSS主要用于视觉呈现&#xff0c;而不是数据处理&#xff0c;但它仍然包含了一定的数据类型&#xff0c;这些数据类型是决定样式和布局的重要因素。掌握这些数…

ES 的倒排索引

目录 什么是 elasticSearch。 什么是倒排索引 Term Index 是什么 Stored Fields 是什么 Doc Values 是什么 segment lucene 是什么 高性能 高扩展性 高可用 Node 角色分化 去中心化 ES 是什么? ES 和 Kafka 的架构差异 ES 的写入流程 ES 的搜索流程 查询阶段…

ANSYS Fluent学习笔记(三)SCDM基础建模

SCDM的GUI界面图如下&#xff1a; 这个是选择一个面来作为基准面 这是表示让基准面 首先是在设计里面一般是草图编辑进行使用的&#xff1a; 编辑可以拉伸&#xff0c;也可以基于一个轴进行旋转. 拉伸效果图 旋转效果图&#xff1a; 然后SCDM有三种模式&#xff1a;分别是草图…

Java Web开发进阶——WebSocket与实时通信

WebSocket 是一种在单个 TCP 连接上进行全双工通信的协议&#xff0c;广泛应用于需要实时数据交换的应用程序中。它能够实现服务器与客户端之间的双向通信&#xff0c;避免了传统 HTTP 请求/响应的延迟。结合 Spring Boot&#xff0c;开发实时通信应用变得更加高效与简便。 1. …

GitCode G-Star 光引计划终审前十名获奖项目公示

在技术的浩瀚星空中&#xff0c;GitCode 平台上的 G-Star 项目熠熠生辉。如今&#xff0c;“光引计划” 已圆满落幕&#xff0c;众多 G-Star 项目作者&#xff0c;一同分享项目在 GitCode 平台托管的宝贵体验&#xff0c;并深入挖掘平台的多样玩法。 众多投稿纷至沓来&#xf…

MPLS原理及配置

赶时间可以只看实验部分 由来&#xff1a;90年代中期&#xff0c;互联网流量的快速增长。传统IP报文依赖路由器查询路由表转发&#xff0c;但由于硬件技术存在限制导致转发性能低&#xff0c;查表转发成为了网络数据转发的瓶颈。 因此&#xff0c;旨在提高路由器转发速度的MPL…

大语言模型的前沿探索:从理论到实践的深度剖析

预训练语言模型的发展 BERT的出现&#xff1a;2018年&#xff0c;Google的研究团队提出了BERT&#xff08;Bidirectional Encoder Representations from Transformers&#xff09;&#xff0c;它通过大规模预训练学习语言的通用表示&#xff0c;然后在各种下游自然语言处理任务…