#プロジェクト開始
方法 2
<!-- spring boot基本环境 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.2.RELEASE</version> </parent>
<!--web应用基本环境配置 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>##7.pom.xml
<build> <plugins> <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins </build># にコンパイル プラグインを追加
##8. 基本的なパッケージとクラス
9. リソース フォルダーと application.properties ファイルを作成します
#10.App.java
package com.springboot.springbootDemo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class App { public static void main( String[] args ) { SpringApplication.run(App.class, args); } }
11. HelloController.java
package com.springboot.springbootDemo.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("hello2") public class HelloController { @RequestMapping("") public String hello() { return "helloworld2"; } }
12. プロジェクトを開始します
13. プロジェクトにアクセスします (以前のバージョンでは使用できない場合があります)アクセス可能、バージョン 2 が利用可能)
http://start.spring.io/
解凍後、Eclipse を使用し、インポート -> 既存の Maven プロジェクト -> 次へ -> 解凍したフォルダーを選択 - > 完了、OK 完了!
以上がEclipseでSpringBootプロジェクトを作成する方法は何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。