时间:2021-07-01 10:21:17 帮助过:17人阅读
第二步:创建项目
设置项目名称。我设置的是:MVCHBN.
设置根包名称。
这个东西也不要马虎。设错了。也是要返工的。
这是项目最后完毕时的文件夹结构
第三步:设置Mave的依赖关系:
<
properties
>
<
java-version
>1.8</
java-version
>
<
org.springframework-version
>4.1.6.RELEASE</
org.springframework-version
>
</
properties
>
这是Java的版本号设置和框架版本号设置。
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-context</
artifactId
>
<
version
>${org.springframework-version}</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-webmvc</
artifactId
>
<
version
>${org.springframework-version}</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-orm</
artifactId
>
<
version
>${org.springframework-version}</
version
>
<
type
>jar</
type
>
<
scope
>compile</
scope
>
</
dependency
>
这是spring框架的依赖关系。
<