• eclipse彻底去除validation(彻底解决编辑js文件的卡顿问题)


    Eclipse中默认的JS编辑器非常慢,尤其在拷贝粘贴代码时,CPU总是占用很高甚至到100%,也就导致了编辑起来很卡。

    这是因为Eclipse中带的Validate功能导致的,这个鸡肋的功能简直让人抓狂。

    试过在菜单和项目属性中修改Validation相应的配置项都不起作用,最后发现需要修改项目根目录下的.project文件才能彻底解决编辑JS文件的卡顿问题。

    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
        <name>integrate-base-web</name>
        <comment></comment>
        <projects>
        </projects>
        <buildSpec>
            <buildCommand>
                <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
                <triggers>full,incremental,</triggers>
                <arguments>
                    <dictionary>
                        <key>LaunchConfigHandle</key>
                        <!-- <value>&lt;project&gt;/.externalToolBuilders/org.eclipse.wst.jsdt.core.javascriptValidator.launch</value> -->
                    </dictionary>
                </arguments>
            </buildCommand>
            <buildCommand>
                <name>org.eclipse.jdt.core.javabuilder</name>
                <arguments>
                </arguments>
            </buildCommand>
            <buildCommand>
                <name>org.eclipse.wst.common.project.facet.core.builder</name>
                <arguments>
                </arguments>
            </buildCommand>
            <buildCommand>
                <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
                <triggers>full,incremental,</triggers>
                <arguments>
                    <dictionary>
                        <key>LaunchConfigHandle</key>
                        <!-- <value>&lt;project&gt;/.externalToolBuilders/org.eclipse.wst.validation.validationbuilder.launch</value> -->
                    </dictionary>
                </arguments>
            </buildCommand>
            <buildCommand>
                <name>org.eclipse.m2e.core.maven2Builder</name>
                <arguments>
                </arguments>
            </buildCommand>
        </buildSpec>
        <natures>
            <nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
            <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
            <nature>org.eclipse.jdt.core.javanature</nature>
            <nature>org.eclipse.m2e.core.maven2Nature</nature>
            <nature>org.eclipse.wst.common.project.facet.core.nature</nature>
            <!-- <nature>org.eclipse.wst.jsdt.core.jsNature</nature> -->
        </natures>
    </projectDescription>

    上面贴出来的代码中的注释部分就是要去掉的Validation配置项部分。

    去掉之后整个世界都清净了。

    "原来忍住一段时间不联系了,就真的不联系了。"

  • 相关阅读:
    SQL Injection
    yum命令不能使用的相关错误
    linux下RTNETLINK answers: File exists的解决方案
    XShell上传、下载文件(使用sz与rz命令)!
    Linux中iptables设置详细
    linux shell awk用法
    linux sed命令 用法
    Tcpdump 的用法
    VIM文本替换命令
    linux的tar命令详情;linux多个文件压缩打包到一个压缩文件
  • 原文地址:https://www.cnblogs.com/yanggb/p/11528281.html
Copyright © 2020-2023  润新知