私はSpringBoot APIに取り組んでおり、次のプロパティ設定でH2データベースを使用しています。
spring.h2.console.enabled=true
spring.datasource.name=test
spring.datasource.username=sa
spring.datasource.password=
spring.datasource.driver-class-name=org.h2.Driver
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.datasource.initialization-mode = embedded
spring.datasource.url=jdbc:h2:mem:test
spring.jpa.hibernate.ddl-auto = update
ブラウザを使用して「 http:// localhost:8082/h2-console 」でH2データベースコンソールを表示したい場合、ブラウザで接続ボタンとテスト接続ボタンで画面が開きます。 [接続のテスト]をクリックすると正常に戻りますが、[接続]ボタンをクリックすると、localhostが接続を拒否したというエラーが発生します。
@Alienの応答とは別に、http.csrf().disable();
も追加する必要がありました。