O2O校园商铺平台开发——v0.0.1环境搭建

博主最近在学习SpringBoot,并通过项目进行深入了解。目前开发O2O校园商铺平台,将以博文的方式记录整个学习流程,github项目地址为https://github.com/Mr-WangZhe/O2O_SchoolShoppingPlat。希望我的学习记录可以给您带来一定的帮助,有问题请随时评论与我交流,谢谢!

1.创建Maven项目

  • 新建流程

    File->New->Maven Project->Next->Next->maven-archetype-webapp->填写信息->Finish
  • 添加Server Runtime右键->Build Path->Java Build Path->Library->Add Library->添加对应的服务器运行环境

  • 添加src/test/resources文件夹,并设置Java Build Path中src/test/resources的Outputfolder路径和src/test/java的Outputfolder相同

  • 修改后需要update maven项目

2.修改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 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0modelVersion>
  <groupId>com.imoocgroupId>
  <artifactId>o2oartifactId>
  <packaging>warpackaging>
  <version>0.0.1-SNAPSHOTversion>
  <name>o2o Maven Webappname>
  <url>http://maven.apache.orgurl>
  <dependencies>
    <dependency>
      <groupId>junitgroupId>
      <artifactId>junitartifactId>
      <version>3.8.1version>
      <scope>testscope>
    dependency>
  dependencies>
  <build>
    <finalName>o2ofinalName>
    <plugins>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
            <artifactId>maven-compiler-pluginartifactId>
            <version>3.8.0version>
            <configuration>
                    <source>1.8source>
                    <target>1.8target>
                    <encoding>UTF8encoding>
            configuration>
            plugin>
    plugins>
  build>
project>

3.修改动态web工程的版本

项目右键->Build Path->Project Facets->Dynamic Web Module(默认的为2.3) 由于是eclipse的bug,没法直接修改成3.1,需要按照如下的方式进行修改:
点击Resource查看Location,并进入对应文件下的.settings文件夹,修改org.eclipse.wst.common.project.facet.core.xml文件中的动态web工程的版本为3.1

4.修改web.xml中web-app标签的规范

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
         http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
  <display-name>Archetype Created Web Applicationdisplay-name>
  <welcome-file-list>
    <welcome-file>index.jspwelcome-file>
    <welcome-file>index.htmlwelcome-file>
  welcome-file-list>
web-app>

你可能感兴趣的:(O2O校园商铺平台开发——v0.0.1环境搭建)