1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Spring BootのSpring Securityで初めに表示されるログイン画面のIDパスワード変更方法

Posted at

ログイン方法

SpringBootのプロジェクトを実行し、http://localhost:8080/login にアクセスすると初めに、以下のような画面が表示されます。
image.png
デフォルトでは、Usernameはuserとなっており、Passwordはコンソールに表示されたものをコピペしてくることでログインすることができます。しかし、プロジェクトを実行するたびにパスワードが変わってしまい面倒なので、パスワードを変更しておくことをおすすめします。

IDパスワード変更方法

application.propertiesに以下の内容を追加することで、Usernameとパスワードを変更可能です。src/main/resources内にあります。

application.properties
spring.security.user.name=nagmaoto
spring.security.user.password=nagamoto
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?