由于'ñ'无法使用Maven编译XMLBean生成的类

时间:2011-07-11 20:47:30

标签: windows eclipse maven encoding xmlbeans-maven-plugin

我正在开发一个项目,我无法编译从WSDL生成XMLBeans。

文件生成正常,但是当我想编译项目时,我遇到了几个类的问题。

我想主要的问题是,该类的名称有一个ñAñoDocument.java并且它不能编译。

[INFO] Compiling 998 source files to D:\workspace3\MyProject\my_module\target\classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] \workspace3\MyProject\my_module\src\main\java\com\mycompany\schema\AñoDocument.java:[17,18] illegal character: \65533
[ERROR] \workspace3\MyProject\my_module\src\main\java\com\mycompany\schema\AñoDocument.java:[20,63] illegal character: \65533
[ERROR] \workspace3\MyProject\my_module\src\main\java\com\mycompany\schema\AñoDocument.java:[20,77] <identifier> expected
[ERROR] \workspace3\MyProject\my_module\src\main\java\com\mycompany\schema\AñoDocument.java:[20,82] = expected
[ERROR] \workspace3\MyProject\my_module\src\main\java\com\mycompany\schema\AñoDocument.java:[20,83] ';' expected
....

Eclipse -> Project -> Properties -> Resource -> Text Encoding我已查看“Inherit from container (Cp1252)”。

这是我项目的POM:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
      <artifactId>MyProject</artifactId>
      <groupId>com.mycompany</groupId>
      <version>1.0</version>
    </parent>

    <groupId>com.mycompany</groupId>
    <artifactId>my_module</artifactId>
    <version>1.0</version>
    <name>my_module</name>
    <url>http://maven.apache.org</url>

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

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>xmlbeans-maven-plugin</artifactId>
                <version>2.2.0</version>
                <executions>
                    <execution>
                       <phase>generate-sources</phase>
                        <goals>
                            <goal>xmlbeans</goal>
                        </goals>
                    </execution>
                </executions>
                <inherited>true</inherited>
                <configuration>
                    <schemaDirectory>downloads</schemaDirectory>
                    <noVDoc>true</noVDoc>
                    <noJavac>true</noJavac>
                    <sourceGenerationDirectory>src/main/java</sourceGenerationDirectory>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-clean-plugin</artifactId>
                <configuration>
                    <filesets>     
                        <fileset>
                        <directory>src/main/java</directory>
                            <includes>
                                <include>**/*.java</include>
                            </includes>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin> 
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.xmlbeans</groupId>
            <artifactId>xmlbeans</artifactId>
            <version>2.2.0</version>
        </dependency>

        <dependency>
            <groupId>org.apache.xmlbeans</groupId>
            <artifactId>xmlbeans-xpath</artifactId>
            <version>2.2.0</version>
        </dependency>   

        <dependency>
            <groupId>net.sf.saxon</groupId>
            <artifactId>saxon</artifactId>
            <version>8.7</version>
        </dependency>

    </dependencies>

</project>

有没有人知道如何解决这个问题呢?

3 个答案:

答案 0 :(得分:1)

我认为问题不在于ñ字符本身。这是一个完全有效的类名字符,如下面的测试类所示(我知道在JDK 1.6上打印为true)。

public class Main {
    public static void main(String[] args) {
         System.out.println(Character.isJavaIdentifierPart('ñ'));
    }
}

您要将文件保存在Cp1252中,该文件与ASCII字符的UTF-8兼容,但非ASCII不兼容。然后你告诉maven你的源文件是用UTF-8编码的。这会导致maven错误地读取ñ字符,当它解释ñ为字符\ 65533 - the replacement character时,它出现在你的构建中。尝试在Eclipse -> Project -> Properties -> Resource -> Text Encoding

下将资源编码更改为UTF-8

答案 1 :(得分:0)

来自Java Language Spec

  

Java字母包括大写和小写ASCII拉丁字母AZ(\ u0041- \ u005a)和az(\ u0061- \ u007a),并且由于历史原因,ASCII下划线(_或\ u005f)和美元签名($,或\ u0024)。 $字符只能用于机械生成的源代码,或者很少用于访问旧系统上的预先存在的名称。

换句话说,在类名上使用n-tilde是违法的。 这意味着许多工具也可能对Java文件名不满意。

更新请参阅以下评论。看起来这是完全错误的。会删除它,但评论是值得的。

答案 2 :(得分:0)

我用这种方式解决了:1)关闭eclipse,2)mvn clean,3)mvn compile