上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 46 下一页
摘要: 参阅 https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Browser_detection_using_the_user_agent 阅读全文
posted @ 2022-03-30 19:53 星小梦 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 样式的声明和使用。 @font-face { font-family: "myFont"; src: url("myFont.ttf") format("truetype"); } h2 { font-family: "myFont"; } 感觉没有啥好介绍的,看参阅文章后就能明白了。 这里需要说的 阅读全文
posted @ 2022-03-30 19:43 星小梦 阅读(695) 评论(0) 推荐(0) 编辑
摘要: Catalina.sh文件,把umask修改为 0022 即可。 引用:https://tomcat.apache.org/tomcat-8.5-doc/security-howto.html 阅读全文
posted @ 2022-03-23 19:43 星小梦 阅读(124) 评论(0) 推荐(0) 编辑
摘要: doskey 命令别名=命令 例如:doskey echo2 = echo $1 这里的$1是占位符。 如果想删除,直接赋予空值即可;例如:doskey echo2= 总的来说把 https://docs.microsoft.com/zh-cn/windows-server/administrati 阅读全文
posted @ 2022-03-22 16:26 星小梦 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 问题:页面没有乱码,但是通过http请求的js文件会乱码,原因是由于 CharacterEncodingFilter 只会处理Servlet请求,不会处理静态文件的响应编码,所以这里需要进一步的配置。 1. 第一步:配置Tomcat的VM Options参数 第二步:打开Setting配置File 阅读全文
posted @ 2022-03-10 12:27 星小梦 阅读(614) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/whatday/article/details/51097456 阅读全文
posted @ 2022-02-16 17:26 星小梦 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 仓库地址(非Yum源仓库):https://public-yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/index.html 如何连接到 Oracle Linux Yum 服务器:https://public-yum.oracle.com/get 阅读全文
posted @ 2022-02-16 16:48 星小梦 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 本解决方案不配置dns,都是ping的IP地址,所以如果想ping域名,则加上DNS项的配置后自行尝试吧 我使用的虚拟机系统信息: Linux:Centos7 Network:虚拟机设置的桥接模式(自动) 第一步,先来解决无法ping通外部网络的情况 cd /etc/sysconfig/networ 阅读全文
posted @ 2022-02-16 12:19 星小梦 阅读(17963) 评论(0) 推荐(0) 编辑
摘要: 参阅:https://docs.oracle.com/cd/E11882_01/appdev.112/e40758/d_lob.htm#ARPLS66712 阅读全文
posted @ 2022-02-15 11:36 星小梦 阅读(63) 评论(0) 推荐(0) 编辑
摘要: Arrays.asList(0,1,2,3,4,5,6,7,8,9).parallelStream().forEach() parallelStream是并行执行流的每个元素,也就是多线程执行,这样就会导致非主线程获取不到HttpServletRequest等上下文中的对象。解决方案:使用strea 阅读全文
posted @ 2022-02-11 16:48 星小梦 阅读(171) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 46 下一页