maven-eclipse-plugin 和编码文件
我们如何强制 Eclipse 项目对特定类型的文件使用特定的编码格式?
示例:*.sql 为 UTF-8,*.java 为 ISO-8859-1
我当然可以在 Eclipse 中做到这一点。
但为了团队和任何新人的利益,我想在构建过程中自动执行此任务。
提前致谢。
How do we force the Eclipse project to use a specific encoding format for a specific type of file ?
Example : UTF-8 for *.sql and ISO-8859-1 for *.java
I can do that in Eclipse of course.
But for the benefit of the team and any new comer, i would like to automatize this task in the build process.
Thankls in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的 sql 文件位于标识为资源的文件夹中(例如 /src/main/resources),您可以使用 maven-resource 插件指定不同的编码。
源编码由系统指定或手动指定,例如:
对于其他不知道如何在 Eclipse 中执行此操作的人:
Assuming your sql files are located in a folder identified as a resource (eg /src/main/resources), you can specify a different encoding using the maven-resource plugin.
And source encoding is specified by the system or manually by something like:
For others that don't know how to do this in Eclipse: