(Intelij)Spring BootでHelloWorld
1640 ワード
手順
- InteliJで「File」→「New」→「Project」
- 表示されたNew Projectで「Spring Initializer」を選択し、「Next」
- 適当に「Group」,「Artifact」を入力。サーバにデプロイしたいので、「Packaging」は「War」を選択し、「Next」
- Webアプリケーションを作りたいので、「Web」→「Spring Web」にチェックし、「Next」
- 適当に「Project name」,「Project location」を入力し、「Fisnish」
- 自動作成されたDemoApplicationに以下の通り追記し、実行。
私は@RestController
がなくて、ハマりました・・・
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
+ import org.springframework.web.bind.annotation.GetMapping;
+ import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
+ @RestController
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
+ @GetMapping("/hello")
+ public String sayHello() {
+ return "Hello World";
+ }
}
- 以下URLにアクセスすると「Hello World」が表示されるはず
Author And Source
この問題について((Intelij)Spring BootでHelloWorld), 我々は、より多くの情報をここで見つけました https://qiita.com/hiramayo/items/8baf92ef0226f459d890著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .