1

我对 IntellijIdea 完全陌生,我正在寻找一些分步过程来设置一个基本项目。

我的项目依赖于 Maven + Jaxb 类,所以我需要一个 Maven 项目,这样当我编译这个项目时,JAXB 对象是由 Maven 插件生成的。现在我开始这样

  1. 我创建了一个空白项目说 MaJa 项目
  2. 向其中添加了 Maven 模块
  3. 在 POM.XML 中添加了以下设置
 <?xml version="1.0" encoding="UTF-8"?>
 <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/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>MaJa</groupId>
    <artifactId>MaJa</artifactId>
    <version>1.0</version>

    <dependencies>
        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
            <version>2.1</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>xjc</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <schemaDirectory>${basedir}/src/main/resource/api/MaJa</schemaDirectory>
                    <packageName>com.rimt.shopping.api.web.ws.v1.model</packageName>
                    <outputDirectory>${build.directory}</outputDirectory>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
  1. 首先,设置是否正确?

  2. 我尝试从 Project > Right Click Menu 中单击 Make/Compile 'MaJa',但它没有做任何事情。

我会期待你的回复。

4

1 回答 1

2

您必须单击不Make/Compile 'MaJa'
1) 您必须在此处选择 maven Build Lifecycle 阶段之一(不少于Compile)。
2)在设置中设置maven的路径。
3) 为jaxb-api工件 添加版本

在此处输入图像描述

我添加shiporder.xsd到目录/src/main/resource/api/MaJa并且java类生成得很好

[jaxb2:xjc]
Generating source...
parsing a schema...
compiling a schema...
com\rim\shopping\api\web\ws\v1\model\ObjectFactory.java
com\rim\shopping\api\web\ws\v1\model\Shiporder.java
于 2012-09-26T21:10:38.683 回答