2020-04-01から1ヶ月間の記事一覧

IntelliJ IDEA BootRun時のコンソール出力の文字化け

windows 環境 4:Run windowの出力 build.gradleにこういう記述を追加して状況は改善 def defaultEncoding = 'UTF-8' tasks.withType(org.springframework.boot.gradle.tasks.run.BootRun) { defaultCharacterEncoding = defaultEncoding } 部分的にまだ文字…

postgresql docker-compose 初期設定の覚書

最初にイメージを構築するときに、superuserのパスワードを指定する POSTGRES_PASSWORDの設定が必要。 参考情報 dockerhub postgres 環境変数 POSTGRES_PASSWORD の note 2 initdbプロセスでのみ使用。いちどイメージができてしまえば、構成ファイル等への記…