2020-07-29から1日間の記事一覧

ProjectStage SystemPropertyをpomで設定

Deltaspikeの話 テストの際 https://maven.apache.org/surefire/maven-surefire-plugin/examples/system-properties.html通常実行の際 https://www.mojohaus.org/exec-maven-plugin/usage.html 上記リンク先にある、SystemPropertyやenvironmentVariableのキ…

dbの文字化け回避対応

文字化け対策 useUnicode=true\&characterEncoding=utf\-8\&characterSetResults=utf\-8 properties(外部設定した場合) useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8 xml useUnicode=true&characterEncoding=UTF-8&character…

Eclipse文字化け

Eclipseの出力で文字化けが起こった場合 Eclipseの設定を一通り見直します。 それでも治らない場合は、以下を環境変数に追加 -Dfile.encoding=utf-8

Git初期設定 windows編

Gitの初期設定 git logの文字化けを防ぐ git config --global core.pager "LESSCHARSET=utf-8 less" git statusの文字化けを防ぐ git config --global core.quotepath false 改行の自動変換なし git config --global core.autocrlf false mail & name git co…