摘要:
之前一直使用本地的VMware Workstation Pro开Linux启动 Redis连接的,没有使用远程服务器的。现在解决了,然后就记录一下。 这里不介绍安装 redis 这里使用的是 阿里云服务器 centos8.x 修改redis的配置文件 vim /etc/redis.conf # 注释 阅读全文
摘要:
String为什么是被final修饰的 https://blog.csdn.net/heima201907/article/details/105483018 为了实现字符串池 首先你要理解final的用途,在分析String为什么要用final修饰,final可以修饰类,方法和变量,并且被修饰的类 阅读全文
摘要:
The last packet successfully received from the server was 722,542 milliseconds ago. The last packet sent successfully to the server was 19,204 millise 阅读全文
摘要:
1. pom <!--email--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 2.applica 阅读全文
摘要:
一、基于注解(@Scheduled) 基于注解@Scheduled默认为单线程,开启多个任务时,任务的执行时机会受上一个任务执行时间的影响。 1. 创建定时器 使用SpringBoot基于注解来创建定时任务非常简单,只需几行代码便可完成。 代码如下: import org.springframewo 阅读全文
摘要:
1.定时任务 java.util.Timer import java.util.Calendar; import java.util.Date; import java.util.Timer; import java.util.TimerTask; /** * @author zhaokuii11@ 阅读全文
摘要:
一、监控管理 通过引入spring-boot-starter-actuator,可以使用Spring Boot为我们提供的准生产环境下的应用监控和管理功能。我们可以通过HTTP,JMX,SSH协议来进行操作,自动得到审计、健康及指标信息等 步骤: 引入spring-boot-starter-actu 阅读全文
摘要:
热部署 一、热部署 在开发中我们修改一个Java文件后想看到效果不得不重启应用,这导致大量时间花费,我们希望不重启应用的情况下,程序可以自动部署(热部署)。有以下四种情况,如何能实现热部署。 模板引擎 在Spring Boot中开发情况下禁用模板引擎的cache 页面模板改变ctrl+F9可以重新编 阅读全文
摘要:
分布式、Dobbo/Zookeeper、Spring Boot/Cloud 一、分布式应用 在分布式系统中,国内常用zookeeper+dubbo组合,而Spring Boot推荐使用全栈的Spring,Spring Boot+Spring Cloud。 分布式系统: 单一应用架构 当网站流量很小时 阅读全文
摘要:
安全,Spring Security 安全 **Spring Security是针对Spring项目的安全框架,也是Spring Boot底层安全模块默认的技术选型。他可以实现强大的web安全控制。对于安全控制,我们仅需引入spring-boot-starter-security**模块,进行少量的 阅读全文