3

Visio で使用するための Spring スタイルの統合イメージがどこにあるか知っている人はいますか? ステンシルだけ、またはここに見られるように Spring Integration デザイナー GUI で使用されるイメージをダウンロードできる場所: http://blog.springsource.com/wp -content/uploads/2010/10/si-sts-editor.png

Visio http://eaipatterns.com/downloads.html用のこれらの EIP ステンシルがあります。

ただし、Spring Integration GUI で使用されているものを使用して、一貫性を保つことを望んでいました。

乾杯!

4

3 に答える 3

5

SpringSource Tool Suiteをダウンロードしてインストールすると、次のファイルがあります$STS_HOME/plugins/com.springsource.sts.config.ui_<version>.jar

標準の解凍ツールで解凍すると、中にフォルダがありますicons/integrationそれが、 Spring Integration GUI エディターからのすべての画像がある場所です。

于 2011-12-09T21:13:19.857 に答える
1
git clone https://github.com/spring-projects/spring-ide
# any icons
git ls-files "*/icons/*"
# integration icons: 
git ls-files plugins/org.springframework.ide.eclipse.config.ui/icons/integration


valid for: df2c295 > 20 hours ago (HEAD, origin/master, origin/HEAD, master)

PSはライセンスに注意してください

于 2015-09-30T15:47:48.910 に答える
0

Spring 統合のイメージは、STS バンドルの一部です。簡単な bash コマンドを使用して、バンドルからそれらを抽出できます。

BASE=https://github.com/spring-projects/spring-ide/tree/master/plugins/org.springframework.ide.eclipse.config.ui/icons/integration/

RAW=https://raw.githubusercontent.com/spring-projects/spring-ide/master/plugins/org.springframework.ide.eclipse.config.ui/icons/integration/

curl "$BASE" | cheerio "a.js-directory-link" | sed "s;^;$RAW;" | xargs -I {} curl -O {}

元のリポジトリをクローンする必要はありません。私の以前の回答は、ローカルの複製されたレポで機能します。

スクリプトはcheerio CLIを使用しており、npmからダウンロードしてインストールできます。https://www.npmjs.com/package/cheerio-cli

于 2015-10-17T14:47:55.483 に答える