IDEA を使用して SpringBoot プロジェクトを作成する
1. IDEA を開き、新しいプロジェクトを作成し、Spring Initializr を選択します
2. アーティファクトを入力します
#3. Web を確認します 4. [終了] をクリックして完了します<?xml version="1.0" encoding="UTF-8"?> <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>com.example</groupId> <artifactId>springbootdemo</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>springbootdemo</name> <description>Demo project for Spring Boot</description> <!--起步依赖--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencies> <!--开发web项目相关依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--springboot单元测试--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <!--maven构建--> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>6. HelloController
package com.example; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping("/hello") public String hello() { return "hello,this is a springboot demo"; } }7 を作成します。プログラムによって自動的に生成された SpringbootdemoApplication には @SpringBootApplication アノテーションが付けられます。このアノテーションは、このクラスがプログラムのエントリポイント
package com.example; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; //入口 @SpringBootApplication public class SpringbootdemoApplication { public static void main(String[] args) { SpringApplication.run(SpringbootdemoApplication.class, args); } }@SpringBootApplication は、Spring のコンポーネント スキャンと SpringBoot の自動構成機能をオンにします。これは、次の 3 つのアノテーションを組み合わせるのと同等です (1) @Configuration: テーブル名 This class は Java ベースの Configuration を使用するため、このクラスを設定クラスとして使用します (2) @ComponentScan: アノテーション スキャンを有効にする (3) @EnableAutoConfiguration: springboot の自動設定機能を有効にする 8. SpringbootdemoApplication クラスを実行します
##9. テスト:
http://localhost:8080/hello
# と入力しますアドレスバーの
##9. jar パッケージを起動する方法を使用して
# cd /Users/shanml/IdeaProjects/SpringbootDemo
mvn install と入力してプロジェクトをビルドします
# (3) ビルド後成功すると、プロジェクトのターゲット フォルダーに追加の jar パッケージが作成されます。 (4) java -jar springbootdemo-0.0.1 -SNAPSHOT.jar を使用します。 jar パッケージを開始します。 ## 推奨チュートリアル: 「java チュートリアル
」以上がIDEA を使用して SpringBoot プロジェクトを作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。