1

intellij 14 で特定のプラグインをアップグレードするオプションはありません。 「不明な引数: -launcherDir」エラーが発生します。

したがって、次のIntellij IDEAバージョンの更新を待つ必要がありますか、またはGWTプラグインのみをアップグレードしてGWT2.7を完全にサポートできますか?

実際には、intellij プラグインを個別にアップグレードすることは可能ですか、それとも IDE の更新で更新されるのでしょうか?

thnx

これはエラーログです:

Unknown argument: -LauncherDir
Google Web Toolkit 2.7.0
DevMode [-[no]startServer] [-port port-number | "auto"] [-whitelist whitelist-string] [-blacklist blacklist-string] [-logdir directory] [-logLevel level] [-gen dir] [-bindAddress host-name-or-address] [-codeServerPort port-number | "auto"] [-[no]superDevMode] [-server servletContainerLauncher[:args]] [-startupUrl url] [-war dir] [-deploy dir] [-extra dir] [-modulePathPrefix ] [-workDir dir] [-XmethodNameDisplayMode NONE | ONLY_METHOD_NAME | ABBREVIATED | FULL] [-sourceLevel [auto, 1.6, 1.7]] [-XjsInteropMode [NONE, JS, CLOSURE]] [-[no]incremental] module[s] 

where 
  -[no]startServer         Starts a servlet container serving the directory specified by the -war flag. (defaults to ON)
  -port                    Specifies the TCP port for the embedded web server (defaults to 8888)
  -whitelist               Allows the user to browse URLs that match the specified regexes (comma or space separated)
  -blacklist               Prevents the user browsing URLs that match the specified regexes (comma or space separated)
  -logdir                  Logs to a file in the given directory, as well as graphically
  -logLevel                The level of logging detail: ERROR, WARN, INFO, TRACE, DEBUG, SPAM, or ALL
  -gen                     Debugging: causes normally-transient generated types to be saved in the specified directory
  -bindAddress             Specifies the bind address for the code server and web server (defaults to 127.0.0.1)
  -codeServerPort          Specifies the TCP port for the code server (defaults to 9997 for classic Dev Mode or 9876 for Super Dev Mode)
  -[no]superDevMode        Runs Super Dev Mode instead of classic Development Mode. (defaults to ON)
  -server                  Specify a different embedded web server to run (must implement ServletContainerLauncher)
  -startupUrl              Automatically launches the specified URL
  -war                     The directory into which deployable output files will be written (defaults to 'war')
  -deploy                  The directory into which deployable but not servable output files will be written (defaults to 'WEB-INF/deploy' under the -war directory/jar, and may be the same as the -extra directory/jar)
  -extra                   The directory into which extra files, not intended for deployment, will be written
  -modulePathPrefix        The subdirectory inside the war dir where DevMode will create module directories. (defaults empty for top level)
  -workDir                 The compiler's working directory for internal use (must be writeable; defaults to a system temp dir)
  -XmethodNameDisplayMode  Emit extra information allow chrome dev tools to display Java identifiers in many places instead of JavaScript functions.
  -sourceLevel             Specifies Java source level (defaults to auto:1.7)
  -XjsInteropMode          Specifies JsInterop mode, either NONE, JS, or CLOSURE (defaults to NONE)
  -[no]incremental         Compiles faster by reusing data from the previous compile. (defaults to ON)
and 
  module[s]                Specifies the name(s) of the module(s) to host
4

2 に答える 2

1

実際には、intellij プラグインを個別にアップグレードすることは可能ですか、それとも IDE の更新で更新されるのでしょうか?

それは異なります。バンドルされているほとんどのプラグインは、完全な IDE 自体が更新されたときにのみ更新されます。その他の JetBrains で作成されたプラグインは個別に更新されます。通常、起動時に、更新可能なプラグインを一覧表示する「プラグインの更新準備完了」アラート ボックスが表示されます。設定のプラグイン セクションに移動して、利用可能なプラグインの更新があるかどうかを確認することもできます。アップデートが利用可能なプラグインには、そのことを示すアイコンが表示されます。

実行している IDEA 14 のバージョンは何ですか? IDEA-132009 の問題 GWT 2.7.0-beta1 superDevMode がコンパイルされない問題は12月8 日にリリースされたバージョン 14.0.2で修正されました。継承されたパブリック フォルダーの無視は、v14.0.3 EAP (Early Access Program) ビルド 139.791 で修正されました。EAP バージョンをダウンロードするか、v14.0.3 が正式にリリースされるまで待つことができます。注意として、私は常に EAP バージョンを実行しています。それらは通常非常に安定しています。これらの修正により、問題が解決する場合があります。

于 2014-12-19T18:07:12.640 に答える