0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

(調査中)Spring MVCアプリケーションをデプロイした際に日本語が文字化けする問題

Posted at

1. Mavenの設定

<project.build.sourceEncoding>プロパティを設定することで、プロジェクトのソースコードのエンコーディングを指定し、ビルドプロセス全体でエンコーディングが統一されるようにします。特に国際化対応や日本語を扱うプロジェクトでは重要です。

   <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

さらに、以下のように追加の設定をすることで、テストソースのエンコーディングも設定できます。

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

<project.reporting.outputEncoding>プロパティは、Mavenのレポート出力のエンコーディングを指定します。これにより、ビルドレポートやその他の生成物が正しくエンコードされるようになります。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?