Maven 编译拷贝资源的时候提示 UTF-8 编码信息

2020-10-10  本文已影响0人  HoneyMoose

如下面的提示内容。

提示的是在拷贝资源文件的时候,因为没有指定编码,将会使用 UTF-8 对编码进行转换。

[INFO] Using'UTF-8'encoding to copy filtered resources.[INFO] Using'UTF-8'encoding to copy filtered properties files.[INFO] Copying2resources[INFO] Copying2resources[INFO] The encoding used to copy filtered properties files have not beenset. This means that the same encoding will be used to copy filtered properties filesaswhencopying other filtered resources. This might not be what you want! Run your build with --debug to see which files might be affected. Read more at https://maven.apache.org/plugins/maven-resources-plugin/examples/filtering-properties-files.html

解决办法

在你的 pom 配置文件中 maven-resources-plugin 插件配置中,添加一个

<propertiesEncoding>UTF-8

这个参数。如果你的 pom 配置文件没有配置过 maven-resources-plugin 插件的话,你需要将这个插件先添加进去。

具体的配置参数如下:

org.apache.maven.pluginsmaven-resources-plugin3.2.0UTF-8

上图显示了需要的配置状态。

https://www.ossez.com/t/maven-utf-8/560

上一篇下一篇

猜你喜欢

热点阅读