05 2022 档案

table 固定表头备忘
摘要:方案1:使用一个table实现 优点:列可以自适应,无论如何也不会出现对不齐的风险 缺点:滚动条出现在了header区域,美中不足 使用了vue语法,但很容易看懂,自己改成纯HTML也可以 <table class="table-fixedHeader" cellpadding="0" cellsp 阅读全文

posted @ 2022-05-28 10:00 空明流光 阅读(455) 评论(0) 推荐(0) 编辑

c++ 数字类型转string
摘要:#include <string> using namespace std; std::to_string(x) 几乎所有的数字类型都可以转 阅读全文

posted @ 2022-05-24 20:34 空明流光 阅读(402) 评论(0) 推荐(0) 编辑

java: You aren’t using a compiler supported by lombok, so lombok will not work and has been disabled
摘要:idea 报错:java: You aren’t using a compiler supported by lombok, so lombok will not work and has been disabled.Your processor is: com.sun.proxy.$Proxy27 阅读全文

posted @ 2022-05-20 16:03 空明流光 阅读(3804) 评论(1) 推荐(1) 编辑

fastjson 反序列化复杂类型或泛型类型
摘要:示例代码如下: var images = com.alibaba.fastjson.JSON.parseObject(society.getImages(),new TypeReference<String[]>(){}); 阅读全文

posted @ 2022-05-19 15:39 空明流光 阅读(195) 评论(0) 推荐(0) 编辑

tomcat 打开实时控制台
摘要:cd进入tomcat/logs/文件夹下 tail -f catalina.out 阅读全文

posted @ 2022-05-17 16:20 空明流光 阅读(169) 评论(0) 推荐(0) 编辑

centos 7 tomcat 8 开机自启
摘要:在 /usr/lib/systemd/system 创建文件 tomcat.service,内容如下: [Unit] Description=Tomcat After=syslog.target network.target remote-fs.target nss-lookup.target [S 阅读全文

posted @ 2022-05-17 15:36 空明流光 阅读(45) 评论(0) 推荐(0) 编辑

java idea 使用 var 关键字定义变量
摘要:1. 安装 lombok 插件 2. 设置依赖项,根据自己插件版本不同,可能需要引入不同版本 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.8</vers 阅读全文

posted @ 2022-05-13 13:34 空明流光 阅读(1211) 评论(0) 推荐(0) 编辑

java spring boot 读取 application.properties
摘要:import org.springframework.core.io.DefaultResourceLoader; import org.springframework.core.io.Resource; import org.springframework.core.io.ResourceLoad 阅读全文

posted @ 2022-05-11 15:45 空明流光 阅读(200) 评论(0) 推荐(0) 编辑

如何强制 windows 11在远程登录时不显示壁纸
摘要:运行 "gpedit.msc" 找到 “计算机配置\管理模板\远程桌面服务\远程桌面会话主机\远程会话环境\” 在右侧,找到“强制删除远程桌面壁纸”,改为已启用就可以了 阅读全文

posted @ 2022-05-08 23:27 空明流光 阅读(529) 评论(0) 推荐(0) 编辑

centos ssh连接卡在【To escape to local shell, press 'Ctrl+Alt+]'.】的解决方法
摘要:默认一个网卡正常,但只要禁用、去掉或第一个网卡上不了网, 就一直很慢或者看似连上了但经常超时,哎,坑多的要死,困扰很久了,终于解决了 解决方法: 修改文件 /etc/ssh/sshd _config 中的UseDNS选项为 UseDNS no 阅读全文

posted @ 2022-05-08 18:15 空明流光 阅读(1023) 评论(0) 推荐(0) 编辑

c#使用redis
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using StackExchange.Redis; namespace RedisDemo { public static c 阅读全文

posted @ 2022-05-07 10:44 空明流光 阅读(1387) 评论(0) 推荐(0) 编辑

centos7下安装Redis5.0.2
摘要:1、下载redis 地址 http://download.redis.io/releases/redis-5.0.2.tar.gz 2、解压tar -zxf redis-5.0.2.tar.gz 3、make编译 3.1 如果缺少gcc环境需要 yum install gcc 3.2 报错: [ro 阅读全文

posted @ 2022-05-06 20:33 空明流光 阅读(201) 评论(0) 推荐(0) 编辑

hyper-v 设置NAT网络备忘
摘要:1.首先创建一个内部虚拟交换机 2.设置这个虚拟交换机IP和网关为192.168.137.1/255.255.255.0 3.虚拟机中的设置网关:192.168.137.1,掩码:255.255.255.0,IP:192.168.137.2 开始随便设置(比如设置为192.168.137.10) 完 阅读全文

posted @ 2022-05-06 17:48 空明流光 阅读(296) 评论(0) 推荐(0) 编辑

Centos7.4 使用 yum 安装 PostgreSql v10
摘要:转自 https://www.csdn.net/tags/NtDaMgwsNjQ3MTgtYmxvZwO0O0OO0O0O.html 1、浏览器打开 https://www.postgresql.org/download/linux/redhat/ 、安装资源 rpm 、客户端、服务端 yum in 阅读全文

posted @ 2022-05-06 17:07 空明流光 阅读(473) 评论(0) 推荐(0) 编辑

vue 给路由增加自定义信息meta属性
摘要:const routes = [ { path: '/', component: index, name: 'index', meta: { // 增加 title: '首页', keepAlive: true } }, { path: '/list', component: list, name: 阅读全文

posted @ 2022-05-05 10:35 空明流光 阅读(1180) 评论(0) 推荐(0) 编辑

导航