发布时间:2021-06-17 14:15:08
POM文件依赖 org.springframework.boot spring-boot-starter org.springframework.cloud spring-c.........【阅读全文】
发布时间:2021-06-16 10:47:55
/*分为四步 */ /*第1步:创建临时表空间(注意:D:\Project\OracleTableSpace\FHADMIN\ 手动创建路径) */ create temporary tablespace C##FHADMIN_TEMP tempfile 'D:\Project\OracleTableSpace\FHADMIN\C##FHADMIN_TEMP.dbf' size 50m autoextend on next .........【阅读全文】
发布时间:2021-06-12 11:44:35
前沿:flowable和activiti是同一个团队开发的,activiti先,flowable后 。所以,flowable 算是 activiti的升级版。flowable 确实要比activiti功能更完善。未来肯定flowable 是主流趋势,当下也已经是主流了。目前最新版本的 flowable 6.6.0 版本,相对于6.5.0版本配置的免登录方案,对6..........【阅读全文】
发布时间:2021-06-11 10:18:41
1. 配置密码,找到 redis.windows.conf 配置文件# Require clients to issue AUTH before processing any other# commands. This might be useful in environments in which you do not trust# others with access to the host running redis-server.## This should stay commented out for back.........【阅读全文】
发布时间:2021-06-10 08:27:45
先来一段简单的代码,如下:当我们流量请求到此接口执行业务逻辑的时候,若服务端此时执行关机 (kill),spring boot 默认情况会直接关闭容器(tomcat 等),导致此业务逻辑执行失败。在一些业务场景下:会出现数据不一致的情况,事务逻辑不会回滚。 当使用 server.shutdown=graceful启用时,在 we.........【阅读全文】