메뉴 건너뛰기

Cloudera, BigData, Semantic IoT, Hadoop, NoSQL

Cloudera CDH/CDP 및 Hadoop EcoSystem, Semantic IoT등의 개발/운영 기술을 정리합니다. gooper@gooper.com로 문의 주세요.


sbt, mvn으로 빌드할때 아래와 같은 오류가 발생하면 빌드설정파일에 UTF-8옵션을 추가해준다.


가. sbt의 경우(project.sbt)

 javacOptions ++= Seq("-encoding", "UTF-8")


나. mvn의 경우(pom.xml)

<plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-compiler-plugin</artifactId>

                <version>2.5.1</version>

                <configuration>

                    <source>1.6</source>

                    <target>1.6</target>

                    <compilerArgument>-Xlint:all</compilerArgument>

                    <showWarnings>true</showWarnings>

                    <showDeprecation>true</showDeprecation>

                    <encoding>UTF-8</encoding>

                </configuration>

</plugin>


------------------오류내용---

[error] C:devworkspaceicbmssrcmainjavacomgoopericbmssdacommutilUtils.java:377: unmappable character for encoding MS949

위로