Spring Oxm 简明教程

Spring OXM - Create Project

在 Eclipse 中,选择 FileNewMaven Project 。勾选 *创建简单项目(跳过原型选择)*并单击下一步。

Using eclipse, select FileNewMaven Project. Tick the *Create a simple project (skip archetype selection) * and click Next.

按照以下所示输入详细信息 −

Enter the details, as shown below −

  1. groupId − com.tutorialspoint

  2. artifactId − springoxm

  3. version − 0.0.1-SNAPSHOT

  4. name − Spring OXM

  5. description − Spring OXM Project

单击完成按钮,将创建一个新项目。

Click on Finish button and an new project will be created.

pom.xml

您可以查看 pom.xml 的默认内容

You can check the default content of pom.xml

<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">

   <modelVersion>4.0.0</modelVersion>
   <groupId>com.tutorialspoint</groupId>
   <artifactId>springoxm</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>Spring OXM</name>
   <description>Spring OXM Project</description>
</project>

现在我们的项目已经准备就绪,在下一章中,让我们在 pom.xml 中添加以下依赖项。

Now as we’ve our project ready, let add following dependencies in pom.xml in next chapter.

  1. Spring Core

  2. Spring OXM

  3. JAXB