Python 官方文档:入门教程 => 点击学习
SpringBoot关闭数据库配置和springSecurity 通过exclude不注入数据源和安全验证模块 @SpringBootApplication(exclude={D
通过exclude不注入数据源和安全验证模块
@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,
SecurityAutoConfiguration.class})
public class ErpApplication {
public static void main(String[] args) {
SpringApplication.run(ErpApplication.class, args);
}
}
在很多时候,项目升级我们都需要将服务停止,一般我们都是利用 kill -9 进程ID 直接将进程杀掉。这样程序不会执行优雅的关闭,而且一些没有执行完的程序就会直接退出。
emsp;emsp;我们很多时候都需要安全的将服务停止,也就是把没有处理完的工作继续处理完成。比如停止一些依赖的服务,输出一些日志,发一些信号给其他的应用系统,这个在保证系统的高可用是非常有必要的。那么咱么就来看一下几种优雅停止springboot的方法。
1.1 添加依赖
首先引入acturator的Maven依赖。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
1.2 修改配置
默认情况下,actuator的shutdown是disable的,我们需要打开它。在yml中配置:
management:
server:
## 访问端口
port: 8081
endpoint:
shutdown:
enabled: true
endpoints:
WEB:
#base-path: 默认为/actuator
exposure:
include:
- shutdown
1.3 代码
接下来设置一个bean对象,配置上PreDestroy方法。这样在停止的时候会打印语句。bean的整个生命周期分为创建、初始化、销毁,当最后关闭的时候会执行销毁操作。在销毁的方法中执行一条输出日志。
import javax.annotation.PreDestroy;
public class TestBean {
@PreDestroy
public void preDestroy() {
System.out.println("TestBean is destroyed");
}
}
做一个configuration,然后提供一个获取bean的方法,这样该bean对象会被初始化。
@Configuration
public class ShutDownConfig {
@Bean
public TestBean getTerminateBean() {
return new TestBean();
}
}
1.4 测试
//一定要POST 访问
curl -X pcurl -X POST Http://localhost:8081/actuator/shutdown
以下日志可以输出启动时的日志打印和停止时的日志打印,同时程序已经停止。是不是比较神奇。
第二种方法也比较简单,获取程序启动时候的context,然后关闭主程序启动时的context。这样程序在关闭的时候也会调用PreDestroy注解。如下方法在程序启动十秒后进行关闭。
ConfigurableApplicationContext ctx = SpringApplication.run(ShutdowndemoApplication.class, args);
try {
TimeUnit.SECONDS.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
ctx.close();
private static ConfigurableApplicationContext context = null;
public static void main(String[] args) {
context = SpringApplication.run(TimerApplication.class, args);
}
@RequestMapping("/closeContext")
public void closeContext() {
if (context != null) {
context.close();
}
}
@Override
public void run(String... args) throws Exception {
starterDemo.welcome();
}
public static void main(String[] args) {
SpringApplication application = new SpringApplication(TimerApplication.class);
application.addListeners(new ApplicationPidFileWriter("/home/luyi/Desktop/app.pid"));
application.run();
}
在springboot启动的时候将进程号写入一个app.pid文件,生成的路径是可以指定的,可以通过命令直接停止服务(进程ID可以直接在这个文件中看到),这个时候bean对象的PreDestroy方法也会调用的。这种方法大家使用的比较普遍,写一个start.sh用于启动springboot程序,然后写一个停止程序将服务停止。
cat /home/luyi/Desktop/app.id | xargs kill 命令直接停止服务
通过调用一个SpringApplication.exit()方法也可以退出程序,同时将生成一个退出码,这个退出码可以传递给所有的context。这个就是一个JVM的钩子,通过调用这个方法的话会把所有PreDestroy的方法执行并停止,并且传递给具体的退出码给所有Context。通过调用System.exit(exitCode)可以将这个错误码也传给JVM。程序执行完后最后会输出:Process finished with exit code 0,给JVM一个SIGNAL。
public static void exitApplication(ConfigurableApplicationContext context) {
int exitCode = SpringApplication.exit(context, (ExitCodeGenerator) () -> 0);
System.exit(exitCode);
}
1.通过接口的方式一定要注意接口的安全问题
2.用第三种比较好,我们可以启动和停止都通过写脚本实现,比较安全,也比较方便。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: SpringBoot项目实现关闭数据库配置和springSecurity
本文链接: https://lsjlt.com/news/131631.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0