摘要:
1.maven中的settings.xml文件中的镜像资源配置 <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/< 阅读全文
摘要:
redis切换db@Componentpublic class RedisDBChangeUtil { @Autowired private StringRedisTemplate redisTemplate; public void setDataBase(int num) { LettuceCo 阅读全文
摘要:
1.查看实时日志: tail -f nohup.out 2.查看实时日志并检索关键字: tail -f nohup.out | grep "关键字" 3.查看文件最后100行日志: tail -n 100 nohup.out | more 4.分页查看所有日志: cat nohup.out | mo 阅读全文
摘要:
/** * 将byte转换为一个长度为8的byte数组,数组每个值代表bit */public static byte[] replaceSpace(Byte b){ byte[] array=new byte[8]; for (int i = 7; i >=0 ; i--) { //& 运算规则: 阅读全文
摘要:
1.yml配置: 阅读全文
摘要:
package com.gymexpress.exerciseservice.controller;import com.gymexpress.commonmodel.controller.BaseController;import com.gymexpress.commonmodel.model. 阅读全文
摘要:
package com.example.treadmill.util;import java.security.cert.CertificateException;import java.security.cert.X509Certificate;import javax.net.ssl.X509T 阅读全文