Mavenを使用したスプリングアイテムの作成


1)File->New->検証アイテムをクリック
2)スプリングアイテムの作成に使用します.

3)GroupIdは大見出し,ArtifactIdは小見出しである.(ex)地下鉄/1号線
こんな感じで名前つけて

4) pom.xml設定
各スプリングアイテムはpomです.私はxmlを持っています.その中のpomです.xmlでは、必要なライブラリに記入するだけで、maven repositoryのライブラリをパソコンにダウンロードし、プロジェクトを実行します.
<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>spring4_0</groupId>
	<artifactId>creatingPjt</artifactId>
	<version>0.0.1-SNAPSHOT</version>

	<dependencies>
		<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
		<dependency>
    		<groupId>org.springframework</groupId>
    		<artifactId>spring-context</artifactId>
    		<version>5.2.14.RELEASE</version>
		</dependency>
		
	
	</dependencies>
	
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>	
				<version>3.8.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
					<encoding>utf-8</encoding>
				</configuration>
			</plugin>
		</plugins>
	</build>
		
</project>

  • dependencies設定
    1)maven reportergitoryにあるspringframeworkライブラリをインポートします.
    2)バージョンはでっち上げるでspringを検索して確認できます.(最新バージョンを入力)

  • 構築の設定
    1)Maven Referリポジトリには構築に関連するライブラリが多数あり、Maven-compiler-pluginでJavaバージョンを設定できます.