美文网首页
Oracle SQL Developer “欢迎使用“页卡死的解

Oracle SQL Developer “欢迎使用“页卡死的解

作者: 一介书生独醉江湖 | 来源:发表于2022-05-20 16:11 被阅读0次
# Mac Oracle SQL Developer 启动会自动打开欢迎使用页面,
# 该页面点击关闭就卡死(不管勾选不勾选<再次启动不显示>)

一、查找dtcache.xml 文件

find ~/.sqldeveloper/ -name dtcache.xml
# 我这里找到了三个文件
/Users/ds/.sqldeveloper//system19.2.1.247.2212/o.ide.13.0.0.1.42.190403.1502/dtcache.xml
/Users/ds/.sqldeveloper//system21.4.3.063.0100/o.ide.12.2.1.5.42.210420.1713/o.ide.13.0.0.1.42.190403.1502/dtcache.xml
/Users/ds/.sqldeveloper//system21.4.3.063.0100/o.ide.12.2.1.5.42.210420.1713/dtcache.xml

二、加入TabCheckboxState:Default配置

# 分别cat 这三个文件,看哪个文件的最下面没有下面这个配置,就在文末加上:

<Item>
    <Key>oracle.help.StartPageEditor:TabCheckboxState:Default</Key>
    <Value class="java.lang.Boolean">false</Value>
</Item>
cat /Users/ds/.sqldeveloper//system19.2.1.247.2212/o.ide.13.0.0.1.42.190403.1502/dtcache.xml
cat /Users/ds/.sqldeveloper//system21.4.3.063.0100/o.ide.12.2.1.5.42.210420.1713/o.ide.13.0.0.1.42.190403.1502/dtcache.xml
cat /Users/ds/.sqldeveloper//system21.4.3.063.0100/o.ide.12.2.1.5.42.210420.1713/dtcache.xml
加上的效果如下:
........略
    <Item>
         <Key>oracle.dbtools.crest.fcp.vcs.svn.SVNChangeListWindow.Mode</Key>
          <Value class="java.lang.String">传入更改</Value>
    </Item>
    <Item>
          <Key>oracle.help.StartPageEditor:TabCheckboxState:Default</Key>
          <Value class="java.lang.Boolean">false</Value>
    </Item>
</dt-cache>

三、保存重启 SQL Developer

保存重启 SQL Developer ,“欢迎使用“页就消失了;
参考:
https://blog.csdn.net/ing___lily/article/details/123791769

相关文章

网友评论

      本文标题:Oracle SQL Developer “欢迎使用“页卡死的解

      本文链接:https://www.haomeiwen.com/subject/bhbfprtx.html