首先Spring Boot项目中都会如下启动类: @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application. ...
分类:
编程语言 时间:
2020-12-28 11:58:46
阅读次数:
0
1、git rm -r --cached 要忽略的文件 (如: git rm -r --cahced build/*, 如修改列表中的内容全部是不需要的, 那么你可以使用最最简单的命令搞定git rm -r --cached .) 2、将要忽略的文件添加到.gitignore文件中去(如果是目录的话 ...
分类:
其他好文 时间:
2020-12-28 11:34:19
阅读次数:
0
前言 LRU 是 Least Recently Used 的简写,字面意思是最近最少使用。 通常用于缓存的淘汰策略实现,由于缓存的内存非常宝贵,所以需要根据某种规则来剔除数据保证内存不被撑满。 代码实现 #ifndef _LRU_CACHE_H_ #define _LRU_CACHE_H_ #inc ...
分类:
系统相关 时间:
2020-12-28 11:27:33
阅读次数:
0
项目占用内存有点大,进程总被杀死,设置一下虚拟内存试试 一、先查看一下自己的服务器swap大小 [root@localhost ~] free -h # 下面显示的 Swap 即为我们的虚拟内存(我的内存条为4G的) total used free shared buff/cache availab ...
分类:
其他好文 时间:
2020-12-25 12:53:03
阅读次数:
0
比如我们在ResourceDictionary里有某一个颜色<SolidColorBrushx:Key="Main.Background"Color="#FF0000"/>很明显这是个红色。我们想在C#代码中,在运行时改变这个颜色的值,比如改为绿色#00FF00可以在代码中这样写vara=Application.Current.Resources.MergedDictionaries;
访问:http://xxxx/seeyon/htmlofficeservlet,看到 POC: POST /seeyon/htmlofficeservlet HTTP/1.1 Host: x.x.x.x Cache-Control: max-age=0 Upgrade-Insecure-Reques ...
分类:
Web程序 时间:
2020-12-25 11:46:31
阅读次数:
0
CPU是通常大家最先关注的性能指标,宏观维度有核的CPU使用率,微观有函数的CPU cycle数,根据性能的模型,性能规格与CPU使用率是互相关联的,规格越高,CPU使用率越高,但是处理器的性能往往又受到内存带宽、Cache、发热等因素的影响,所以CPU使用率和规格参数之间并不是简单的线性关系,所以 ...
分类:
其他好文 时间:
2020-12-24 12:47:12
阅读次数:
0
{myproject}/websocket.py 1 # websocket.py 2 async def websocket_application(scope, receive, send): 3 while True: 4 event = await receive() 5 6 if even ...
分类:
Web程序 时间:
2020-12-24 11:39:43
阅读次数:
0
博主前篇博客里面已经讲过VNC的配置,为了方便查看,单独拿出来写一下。 (1) 搜索可以用来安装vncserver的软件包: sudo apt-cache search vncserver (2) 安装VNC的基础服务(这里选择vnc4server): 安装xfce4桌面: sudo apt-get ...
分类:
其他好文 时间:
2020-12-23 11:42:36
阅读次数:
0
我们可以在 Package Explorer 视图 可以在 Package Explorer 视图中快速运行 Java 程序。 Package Explorer 视图: 鼠标右击包含 main 函数的 java 类选择 Run As > Java Application 同样你也可以在 Packag ...
分类:
其他好文 时间:
2020-12-22 12:38:05
阅读次数:
0