Maven + Jaxb项目+ IntellijIdea入门

时间:2012-09-26 15:08:07

标签: maven jaxb intellij-idea maven-jaxb2-plugin project-settings

我是IntellijIdea的新手,我正在寻找建立基本项目的一步一步的过程。

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

  1. 我创建了一个空白项目,说MaJa项目
  2. 向其添加了Maven模块
  3. 在POM.XML中添加了以下设置
  4.  <?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&gt;中的Make / Compile'MaJa';右键单击菜单,它没有做任何事情。

    3. 我期待着yoru的回复。

1 个答案:

答案 0 :(得分:1)

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

的版本

enter image description here

我将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