Spring Boot の pom.xml で以下のような Spring Security の設定をしていると、デフォルトでログイン画面が表示されます。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency>
↓こんなやつです。
この画面でログインするためのユーザーIDとパスワードが分からなくて悩んだのですが、ユーザーIDは「user」です。
そしてパスワードは、Spring Boot 起動時にコンソールに出力されています。
Using generated security password: d1ded918-4c43-4dab-b731-c7794c88c88f
なかなかの初心者殺しですね。💦
・参考サイト