摘要: 1.su -orcal 2.sqlplus /nolog 3.connect /as sysdba 4.startup 5.lsnrctl start 阅读全文
posted @ 2021-06-13 11:14 逆水乘舟,不进则退 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 配置主要分为三部分,主节点的配置,从节点的配置,以及三个哨兵的配置,话不多说,说一下主节点的配置: master节点主要配置bind 0.0.0.0 port 6379 和允许后台模式运行的方式 和dbfilename "dump6380.rdb" 从节点的配置主要比主节点的配置多了slaveof 阅读全文
posted @ 2021-02-09 12:33 逆水乘舟,不进则退 阅读(454) 评论(0) 推荐(0) 编辑
摘要: package induconjob.config; import org.springframework.beans.BeansException;import org.springframework.context.ApplicationContext;import org.springfram 阅读全文
posted @ 2021-01-21 15:17 逆水乘舟,不进则退 阅读(228) 评论(0) 推荐(0) 编辑
摘要: select * from test where rowid in( select max(rowid) from test group by name) 这样可以查bai出不重du复的数据集 如果是zhi要删dao除重复数zhuan据只留一条的话:shudelete from test where 阅读全文
posted @ 2020-12-19 21:40 逆水乘舟,不进则退 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 对项目进行优化,由于maven+ssm单体架构,没有采用微服务+分布式计算的架构,调优思路 多线程处理+sql优化+redis缓存,对jvm和线程池,redis连接池,数据库连接池进行调优 目前jvm调优的参数 -Xms8g -Xmx8g -Xmn3g -Xss2048K -XX:PermSize= 阅读全文
posted @ 2020-12-17 09:50 逆水乘舟,不进则退 阅读(117) 评论(0) 推荐(0) 编辑
摘要: package gms.Panorama.controller; import java.util.ArrayList;import java.util.List;import java.util.Map;import java.util.Random;import java.util.concur 阅读全文
posted @ 2020-12-08 09:14 逆水乘舟,不进则退 阅读(755) 评论(0) 推荐(0) 编辑
摘要: 1.在本地resource建立lib包 2.pom文件如下配置 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLoc 阅读全文
posted @ 2020-11-01 12:03 逆水乘舟,不进则退 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 表结构操作: 3.3.1:资源库流程规则表 1) act_re_deployment 部署信息表 2) act_re_model 流程设计模型部署表 3) act_re_procdef 流程定义数据表 3.3.2:运行时数据库表 1) act_ru_execution 运行时流程执行实例表 2) a 阅读全文
posted @ 2020-09-30 11:28 逆水乘舟,不进则退 阅读(583) 评论(0) 推荐(0) 编辑
摘要: /**部署流程定义*/ @Test public void deploymentProcessDefinition(){ Deployment deployment = processEngine.getRepositoryService()//与流程定义和部署对象相关的Service .creat 阅读全文
posted @ 2020-09-30 11:20 逆水乘舟,不进则退 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1.此文章纯粹是我在学习activity过程中的总结,不喜勿喷。 /**使用代码创建工作流需要的23张表*/ @Test public void createTable(){ ProcessEngineConfiguration processEngineConfiguration = Proces 阅读全文
posted @ 2020-09-30 11:19 逆水乘舟,不进则退 阅读(224) 评论(0) 推荐(0) 编辑