摘要: Linux常用命令大全(非常全!!!) 最近都在和Linux打交道,感觉还不错。我觉得Linux相比windows比较麻烦的就是很多东西都要用命令来控制,当然,这也是很多人喜欢linux的原因,比较短小但却功能强大。我将我了解到的命令列举一下,仅供大家参考: 系统信息 arch 显示机器的处理器架构 阅读全文
posted @ 2020-03-29 10:28 fuhai_l 阅读(151) 评论(0) 推荐(0)
摘要: https://www.echartsjs.com/examples/zh/index.html 阅读全文
posted @ 2020-03-19 15:55 fuhai_l 阅读(421) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="https://cdn.bootcss.com/jquery/2.0.0/jquery.js"></script> <title></title> </head> <b 阅读全文
posted @ 2020-03-18 20:30 fuhai_l 阅读(508) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/jinixin/article/details/80042763 阅读全文
posted @ 2020-03-17 10:07 fuhai_l 阅读(129) 评论(0) 推荐(0)
摘要: import javax.servlet.http.HttpServletRequest; import java.net.InetAddress; import java.net.UnknownHostException; public class IpUtil { private static 阅读全文
posted @ 2020-03-15 16:06 fuhai_l 阅读(5717) 评论(0) 推荐(0)
摘要: doc 环境下使用命令: keys 命令 ? 匹配一个字符 * 匹配任意个(包括0个)字符 [] 匹配括号间的任一个字符,可以使用 "-" 符号表示一个范围,如 a[b-d] 可以匹配 "ab","ac","ad" \x 匹配字符x,用于转义符号,如果要匹配 "?" 就需要使用 \? 判断一个键值是 阅读全文
posted @ 2020-03-15 14:21 fuhai_l 阅读(416) 评论(0) 推荐(0)
摘要: 1、@SpringBootApplication 这个注解是Spring Boot最核心的注解,用在 Spring Boot的主类上,标识这是一个 Spring Boot 应用,用来开启 Spring Boot 的各项能力。实际上这个注解是@Configuration,@EnableAutoConf 阅读全文
posted @ 2020-03-15 14:19 fuhai_l 阅读(133) 评论(0) 推荐(0)
摘要: # Redis 配置文件示例 # 注意单位: 当需要配置内存大小时, 可能需要指定像1k,5GB,4M等常见格式 # # 1k => 1000 bytes # 1kb => 1024 bytes # 1m => 1000000 bytes # 1mb => 1024*1024 bytes # 1g 阅读全文
posted @ 2020-03-15 13:26 fuhai_l 阅读(97) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/u010191243/article/details/74015463 阅读全文
posted @ 2020-03-15 13:16 fuhai_l 阅读(445) 评论(0) 推荐(0)