命令实例:nohup java -Xms500m -Xmx500m -Xmn250m -Xss256k -server -XX:+HeapDumpOnOutOfMemoryError -jar $JAR_PATH/test-0.0.1-SNAPSHOT.jar --spring.profiles.a ...
分类:
编程语言 时间:
2020-06-07 11:15:46
阅读次数:
109
场景的搭建 M = 15;% the num of antenna L = 100; % the num of snapshot theta = [10 30]; %the DOA K = length(theta); %the num of the signal SNR = 10; searchg ...
分类:
其他好文 时间:
2020-06-06 17:01:37
阅读次数:
67
备忘录模式(Memento Pattern)又称为快照模式(Snapshot Pattern)或者令牌模式(Token Pattern),是指在不破坏封装的前提下,捕获一个内部状态,并在对象之外保存这个状态。这样以后就可将该对象恢复到原先保存的状态。 在软件系统中,备忘录模式为我们提供了一种“后悔药 ...
分类:
其他好文 时间:
2020-05-30 20:20:27
阅读次数:
102
1 pom <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>com.xx.xxAppli ...
分类:
编程语言 时间:
2020-05-30 15:37:58
阅读次数:
58
1. starter 命名规则: springboot项目有很多专一功能的starter组件,命名都是spring-boot-starter-xx,如spring-boot-starter-logging,spring-boot-starter-web, 如果是第三方的starter命名一般是:xx ...
分类:
编程语言 时间:
2020-05-30 15:32:47
阅读次数:
86
1.新建module,slf4j-demo 2.pom.xml添加依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3 ...
分类:
其他好文 时间:
2020-05-30 10:49:53
阅读次数:
50
问题背景随着研发团队不断扩大Artifactory中Maven仓库也在逐步增多,包括local、remote、virtual仓库,其中往往会涵盖RELEASE和SNAPSHOT包类型仓库,为了对使用客户透明简化用户配置,管理人员会通过创建一个virtual仓库,将所有用到的local(RELEASE和SNAPSHOT)、remote(RELEASE和SNAPSHOT)包含到一个virtual仓库中
分类:
其他好文 时间:
2020-05-29 10:05:05
阅读次数:
86
Redis支持RDB和AOF两种持久化机制,持久化功能有效地避免因进程退出,服务器故障等造成的数据丢失问题,当下次Redis重启时利用之前持久化的文件即可实现数据恢复 RDB持久化 可以在指定时间间隔内生成数据集的时间点快照(point-in-time snapshot),新快照会覆盖旧快照,占用空 ...
分类:
其他好文 时间:
2020-05-26 15:15:11
阅读次数:
47
1:pom.xml 2.applocation.yml 文件 3.启动类 4.效果图 ...
分类:
编程语言 时间:
2020-05-20 22:49:53
阅读次数:
95
-- .jar项目启动 nohup java -jar task-service-0.0.1-SNAPSHOT.jar & -- 不输出打印日志到nohup里启动 nohup java -jar task-service-0.0.1-SNAPSHOT.jar >/dev/null 2>&1 & -- ...
分类:
编程语言 时间:
2020-05-18 20:37:47
阅读次数:
51