0

Ubuntu に Eclipse 3.8 をインストールしましたが、それに Spring を追加したいと考えています。関連するライブラリをビルド パスにインストールする必要があると思いますが、どこから入手できますか?

何かをダウンロードする必要がありますか? グーグルはあまり役に立ちませんでした。

また、関連する質問があります。フレームワークとは基本的に、作業するためのライブラリを提供するものですよね? これらのライブラリを利用して、プロジェクトに統合できます。

感謝。

4

4 に答える 4

2

You have two possible options to add Spring functionality to Eclipse:

  1. Install Spring Tools Suite

    The Spring Tool Suite is an Eclipse-based development environment that is customized for developing Spring applications. It provides a ready-to-use environment to implement, debug, run, and deploy your Spring applications, including integrations for Pivotal tc Server, Pivotal Cloud Foundry, Git, Maven, AspectJ, and comes on top of the latest Eclipse releases.

  2. Install STS plugin for Eclipse

    Well, if you are comfortable with Eclipse as a DE , you can install STS plugin for Eclipse that will essentially let you create and deploy Spring applications

Coming to your second question, Yes. These are basically libraries that are added to your project and you can use them. You can add these functionalities to your project in two ways:

  1. Use Spring-provided JARS

    This is a common method to basically, add and third party API to a Java Project. Download the jars related to spring. Include them in your classpath and use them like you would with ant Third party API. You can use the link Spring Projects to download the required spring library. Unzip it and copy to your classpath.

  2. Use Apache Maven

    This will let you manage your spring dependencies and is a hassle free solution to include the necessary jars to needed to build your project.

If you are totally new to spring check out: Setup Spring from scratch

于 2013-10-13T06:33:48.600 に答える
1

デフォルトでSpring機能が付属しているSTSをインストールできます。以下はダウンロードURLです http://spring.io/tools/sts

于 2013-10-13T06:21:50.010 に答える
1

Mavenをインストールします(m2eEclipseプラグインまたは経由apt-get)。プロジェクトでmavenを有効にし、春の依存関係をpom.xml.

于 2013-10-13T06:27:03.543 に答える
0

Eclipse プロジェクトで特定の jar ファイルのセットが必要な場合、これを行う最も簡単な方法は、それらを Eclipse プロジェクトにコピーして貼り付け、次に各 jar ファイルを右クリックして [ビルド パス] -> [追加] を選択することです。

これにより、プログラムを開発できます。

結果を他のユーザーと共有する必要がある場合は、[エクスポート] -> [Runnable Jar] を使用します。

経験を積んだら、必要な jar をダウンロードしてビルド パスに追加するのに役立つツールを使用したいと思うかもしれません。Maven はその点で優れており、多くの人に使用されていますが、かなりの規律が必要です。

于 2013-10-13T06:53:15.910 に答える