質問

最近、EuropaからEclipse Ganymedeにアップグレードしたところ、JSPファイルを編集しているときに、HTML属性(JSP属性ではない)を編集するときにIDEがクロールすることがわかりました。

これを経験したことがありますか、何か提案がありますか?

また、Eclipse関連の質問をするためのより良い場所を教えていただければ、教えてください。

ありがとう!

役に立ちましたか?

解決

Eclipseのビジュアルエディターは低速です。それがなぜなのかわかりません。他のグラフィックスフレームワークは、Javaで驚異的な効果をリアルタイムで実現するため、それほど遅くはなりません。

Eclipseに対してバグレポートを開くことをお勧めします。このようにして、フィードバックを与えて、彼らがそれについてどう思うかを見ることができます。また、受け入れた場合は、進捗状況を追跡できます。

Eclipseの質問については、ニュースグループにアクセスしてください。メーリングリストもありますが、Eclipseで作業している開発者専用です( を使用している開発者向けではありません)。したがって、これらはこのバグに取り組むことを選択した場合のオプションに過ぎません:)

他のヒント

Eclipse Ganymedeの場合:次のメニューを使用して、プロジェクトごとにHTML検証をすべて無効にするか、その一部を無効にできます。

プロジェクトを右クリック|プロジェクトのプロパティ|検証|プロジェクト固有の設定を有効にします。

その後、HTML検証を無効にできます。

または、[プロジェクトプロパティ]から[検証を開く]をクリックし、[HTML検証]を選択します。 [プロジェクト固有の設定を有効にする]を選択し、10個の要素チェックのいずれかを<!> quot; Ignore。<!> quot;

に設定します

Windows(Eclipse)環境設定|を使用して、ワークスペース全体でこれらの設定をオフにすることもできます。検証設定。

The problem still persist today, as it seem. I know the problem, but I don't know yet how to counter it...

You can see that if you try to edit an attribute at the end of the document, it is not as slow as editing an attribute at the beginning of the document.

Or you may see that if you try to edit attributes that have their ending-quote already in place (for example, first type in: attribute_name="" and only then type in the attribute value, it is also not slow.

The problem occurs because when you type in an attribute without a value-ending quote ("), like so: attribute_name="..., the rest of the document becomes the value of that attribute and is being processed by eclipse for every keystroke you make.

I have spent about half an hour looking at how to disable attribute value processing but failed (maybe I didn't look for it long enough).

Ben

Try closing the overview tab

untick Enable folding in Preferences > General > Editors > Structured Text Editors

Using the eclipse update site I had previously installed Eclipse Web Developer Tools. It seems something included in this makes the JSP editor extremely slow.

I un-installed this and installed the Web Page Editor which also includes the JSP editor and does not have the same slow issue

Here they say Eclipse Kepler will overcome this issue: Is Eclipse Too Slow Switching Tabs?. Unfortunately patch link for Eclipse Juno is now broken... so I'll wait for Kepler.

Project > Properties > JavaScript > Include Path > Source

Delete dir with tons of js files, such as JQuery, etc... Eclipse gets lost with too many source code to compile.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top