会员
众包
新闻
博问
闪存
赞助商
Trae
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
BigOrang
博客园
首页
新随笔
联系
订阅
管理
随笔 - 98
文章 - 9
评论 - 10
阅读 -
13万
2025年4月27日
-Xmx3G -Xms2G 在已经指定了最小内存2G后,启动的时候,就会直接分配2G给jvm吗 ?还是动态从1m到2G逐步分配的
摘要: 配置 JAVA_OPTS=" -server -Xmx${Xmx} -Xms${Xms} -Xmn256m -XX:PermSize=128m -Xss256k -XX:+DisableExplicitGC -XX:+UseConcMarkSweepGC -XX:+C MSParallelRemar
阅读全文
posted @ 2025-04-27 11:25 BigOrang
阅读(22)
评论(0)
推荐(0)
2025年4月19日
java8类加载器示例&类加载1.8和1.8+的区别
摘要: 示例代码 package com.example.demo; public class ClassLoaderExample { public static void main(String[] args) { // 1.8及以下ClassLoaderExample sun.misc.Launche
阅读全文
posted @ 2025-04-19 18:24 BigOrang
阅读(37)
评论(0)
推荐(0)
2025年4月3日
windows查看端口占用
摘要: windows 有时候 netstat 可能无法正确显示占用端口的进程 netstat -ano| findstr '30020' Caused by: java.net.BindException: Address already in use: bind netstat -ano| findst
阅读全文
posted @ 2025-04-03 17:30 BigOrang
阅读(317)
评论(0)
推荐(0)
2024年8月30日
vmware Docker 设置代理
摘要: vmware Docker 设置代理到宿主机的代理软件 dockerhub被墙,很多镜像源无法使用,如果有可用的代理,可以参考以下配置 目录添加配置重启Docker端口不通代理软件需要打开 allow lan代理软件版本如果是windows则关闭防火墙 添加配置 获取宿主机的ip 在windows上
阅读全文
posted @ 2024-08-30 11:23 BigOrang
阅读(465)
评论(0)
推荐(0)
2024年8月29日
腾讯云域名托管到 cloudflare
摘要: cloudflare https://dash.cloudflare.com/ 腾讯云域名列表 https://console.cloud.tencent.com/domain/all-domain/all 先进入 腾讯云列表,点击自己已购买的域名 新购买的域名,必须等待状态为正常以后才能进行下一步
阅读全文
posted @ 2024-08-29 16:29 BigOrang
阅读(3647)
评论(0)
推荐(0)
2024年7月24日
nginx 代理eureka后css/js/fonts无法访问
摘要: nginx 代理eureka后css/js/fonts无法访问,页面没有样式 server { listen 80; server_name your_domain.com; location /eureka { proxy_pass http://eureka_server_ip:8761; pr
阅读全文
posted @ 2024-07-24 18:10 BigOrang
阅读(69)
评论(0)
推荐(0)
2024年7月22日
docker 基础镜像损坏
摘要: docker run 以后查看日志,提示报错,服务不能正常启动. # docker logs -f 6413 standard_init_linux.go:211: exec user process caused "no such file or directory" standard_init_
阅读全文
posted @ 2024-07-22 16:58 BigOrang
阅读(85)
评论(0)
推荐(0)
2024年7月5日
一起来找bug茬-01
摘要: /** * @description 对HttpServletRequest 请求的数据进行转义,防止xss攻击 * URL: home.html?mothod=space&pid=335511 */ public class XssHttpServletRequestWrapper extends
阅读全文
posted @ 2024-07-05 10:37 BigOrang
阅读(6)
评论(0)
推荐(0)
2024年6月21日
mysql SHOW PROFILE
摘要: SHOW PROFILE [type [, type] ... ] [FOR QUERY n] [LIMIT row_count [OFFSET offset]] type: { ALL | BLOCK IO | CONTEXT SWITCHES | CPU | IPC | MEMORY | PAG
阅读全文
posted @ 2024-06-21 17:55 BigOrang
阅读(15)
评论(0)
推荐(0)
2024年6月14日
将所有容器docker都重启, 但是不重启mysql
摘要: 要重启所有 Docker 容器但不重启 MySQL 容器,可以使用以下命令: docker ps --format '{{.Names}}' | grep -v 'mysql' | xargs docker restart 解释 首先,列出所有正在运行的容器的名称,过滤掉 MySQL 容器: doc
阅读全文
posted @ 2024-06-14 13:57 BigOrang
阅读(16)
评论(0)
推荐(0)
下一页
公告
昵称:
BigOrang
园龄:
8年7个月
粉丝:
1
关注:
11
<
2025年8月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
点击右上角即可分享