字符串 @GetMapping("/string") public String stringTest(){ redisTemplate.opsForValue().set("str","Hello World"); String str = (String) redisTemplate.opsFo ...
分类:
其他好文 时间:
2021-02-01 12:45:42
阅读次数:
0
Labelary Engine Documentation ZPL Command Support ZPL Extensions for Simulating Colored Label Stock Configuration via System Properties 1. ZPL Command ...
分类:
移动开发 时间:
2021-02-01 11:41:41
阅读次数:
0
SONIC 简介 定义及架构 SONIC (Software for Open Networking in the Cloud) 主要是运行在开放交换机上的开源网络操作系统,其包含了一个功能齐全的网络层设备。截至 2018 年,SONIC 支持 BGP,LLDP,link aggregation/L ...
分类:
其他好文 时间:
2021-01-28 12:14:56
阅读次数:
0
Springboot入门 1. 快速搭建 https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/ 官方文档 https://start.spring.io/ 搭建官网 下载 导入idea 即可 导入后的项目结构 创建 ...
分类:
编程语言 时间:
2021-01-25 11:26:43
阅读次数:
0
原文: Dump文件分析 本文主要介绍Dump文件结构,理解Dump文件对于分析线程高占用、死锁、内存溢出等高级问题有非常重要的指导意义。 什么是Dump文件 Dump文件是进程的内存镜像。可以把程序的执行状态通过调试器保存到dump文件中。Dump文件是用来给程序编写人员调试程序用的,这种文件必须 ...
分类:
其他好文 时间:
2021-01-19 12:10:17
阅读次数:
0
Ansible 常用模块 参考地址: https://docs.ansible.com/ansible/latest/modules/modules_by_category.html ping command and shell # 注意区别和相同 # command 不能识别变量以及引号内容 ro ...
分类:
系统相关 时间:
2021-01-19 12:09:17
阅读次数:
0
官方文档地址: https://dromara.org/zh-cn/docs/soul/user-http.html http服务就是我们自己的项目。 1.引入 soul-examples/soul-examples-http 到soul.pom中 application.yml中添加自己的soul ...
分类:
Web程序 时间:
2021-01-16 12:01:05
阅读次数:
0
mongo --port 端口 查看用户use admindb.system.users.find().pretty() 查询操作次数db.serverStatus().opcounters 查看参数use admindb.adminCommand({getParameter:"*"})因为mgse ...
分类:
其他好文 时间:
2021-01-16 11:54:15
阅读次数:
0
在web.xml中配置以下内容: <!--配置MVC的乱码过滤--> <filter> <filter-name>encoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</ ...
分类:
Web程序 时间:
2021-01-15 11:50:19
阅读次数:
0
我们知道所有的驱动程序其实都是实现相同的JDK接口来连接数据库。这些接口其实就是JDBC接口。 那我们就从JDBC连接来看mysql驱动是怎么实现这些接口来连接数据库的。 首先写了一个简单的数据库连接程序,和mysql 建立连接 当前使用的mysql驱动是 mysql-connector-java- ...
分类:
数据库 时间:
2021-01-12 11:09:37
阅读次数:
0