sharpbb Ryan Wang 👍 发现问题了 为什么这段代码放上去会出错? public class LiveObj { public static LiveObj obj; @Override protected void finalize() throws Throwable { super.finalize(); System.out.println("调用重写的finalize方法"); obj = this; } public static void main(String[] args) throws InterruptedException { obj = new LiveObj(); //对象为null 没有引用指向了 obj = null; //显式表明应该进行垃圾回收了 System.gc(); Thread.sleep(2000); if (obj == null) { System.out.println("对象已死"); } else { System.out.println("我胡汉三又回来了"); } obj = null; System.gc(); Thread.sleep(2000); if (obj == null) { System.out.println("对象已死 救不回来了"); } else { System.out.println("还有第二次复活的机会吗?"); } } }
sharpbb 还是之前的问题 搞明白了问题是出在ssl证书上面 因为我直接使用ip地址访问 保存什么的都没有问题 日志显示 说明是post请求不支持 Post with id: [133] is a draft and visits will not be updated 我设置的是一键https 然后再设置dns 这样感觉没问题啊 映射也从http变成了https 但是就是执行更新什么操作的时候失败了