0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

初めてのspringbootで簡単なHelloworld

Last updated at Posted at 2024-07-11

環境構築:DL方法「省略」

SpringBootのバージョンが「3.0」以降だとjava17以降がデフォルトっぽいです。
変更する方法としてはJDK11をダウンロードしたうえで、「インストール済みのJRE」に追加して、設定を変えるという方法で対応できるかと。。。(↓を参照)
https://document.intra-mart.jp/library/ebuilder/public/e_builder_setup_guide/texts/jre/index.html

d6f819832c72bf7d6ae59fece4f769f7.png
・ファイル新規>その他>springスターター・プロジェクト
※Maven

b0d7773ada598f9921e82d149646e471.png
>名前・説明を記述

9caab6e4410289781587ac3084cdec56.png

50faaf4089c1373f5cc066611c006bc6.png
・プロジェクトを開き、.comexmple.demoのパッケージを右クリック
>新規でパッケージを選択、フォルダ名「controller」完了

.javaに以下を記述


package com.example.demo.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    @GetMapping("/")//URL画面遷移指定なし http://localhost:8080
    public String hello() {
        return "Hello";
    }
    @GetMapping("/sample")//sample遷移 http://localhost:8080/sample
    public String test() {
        return "Sample api";
    }

・プロジェクトを右クリック>実行>springbootアプリケーション
・■で停止
画面表示ローカルホストで確認
http://localhost:8080
http://localhost:8080/sample

・SpringBootを使用した入力画面(必要最低限の実装)
おすすめ記事
https://qiita.com/t-shin0hara/items/687085ec34ae78ca2260

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?