2、左側のパネルで Spring を選択しますInitializr
プロジェクト名、プロジェクトグループ名、プロジェクトIDを入力し、クリックして次のステップに進みます
次のページは依存関係を追加するためのページで、必要に応じて依存関係を追加できます。または、pom.xml ファイルに追加することもできます。主に含まれるもの: コア (コアの依存関係)、SQL、NOSQL
現在のテストでは、Web を確認するだけで済みます。2. 対応するディレクトリに Example.java を作成します。コードは次のとおりです。
package com.example.demo; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @EnableAutoConfiguration public class Example { @RequestMapping("/") String home() { return "Hello World!"; } @RequestMapping("/hello/{myName}") String index(@PathVariable String myName) { return "Hello "+myName+"!!!"; } }
3. プロジェクトを実行し、SpringbootTestApplication.java を選択し、右クリックして「SpringbootTestApplication」を実行するか、次のボタンをクリックします。プログラムは正常に起動します。コンソールは次のとおりです (部分):
5. 最後に、テストしてみましょう: http://localhost:8080/ と http://localhost:8080/hello を入力します。 /王达达
テストは成功しました! ! !
<?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 "> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>springboot_test</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>springboot_test</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.4.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> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
以上がSpringBoot 入門の第 1 章: Hello Worldの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。