テストコードを使用して最初のサーバを実行


🎯 ダウンジャケットコードを表示
package com.example.demo;

import org.junit.jupiter.api.Test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class DemoApplicationTests {

    @Test
    void contextLoads() {
    }

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

}
上記のコードを実行し、

運転が成功したことをTomcat started on port(s): 8080 (http) with context path ''で確認します.
成功さえすれば.