idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面

创建 maven 的步骤
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第1张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第2张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第3张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第4张图片
创建 maven 完成
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第5张图片
点 file 列表下的 settings
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第6张图片
确认后 回到主页面 点file 列表下 的 project Structure
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第7张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第8张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第9张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第10张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第11张图片
idea 创建 maven项目 步骤 以及 搭建配置后运行成功界面_第12张图片
现在 开始 配置 pom.xml 版本号 和 依赖的jar 包

<properties>
        <webVersion>4.0</webVersion>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <spring.version>5.0.1.RELEASE</spring.version>
        <mybatis.version>3.4.5</mybatis.version>
        <jackson.version>2.9.3</jackson.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.7.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.tomcat.maven</groupId>
                <artifactId>tomcat7-maven-plugin</artifactId>
                <version>2.2</version>
                <configuration>
                    <port>8080</port>
                    <uriEncoding>utf-8</uriEncoding>
                </configuration>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml
                
                true
            
            
                src/main/resources
                
                    **/*.xml</include>
                    <include>**/*.properties
                
                true
            
        
    

    

        
        
            log4j
            log4j
            1.2.17
        

        
        
        
        
            mysql
            mysql-connector-java
            5.1.41
            runtime
        
        
        
            com.alibaba
            druid
            1.1.5
        
        
            javax.servlet
            javax.servlet-api
            3.1.0
            provided
        

        
            javax.servlet
            jstl
            1.2
        
        
        
        
            org.springframework
            spring-core
            ${spring.version}
        
        
            org.springframework
            spring-web
            ${spring.version}
        
        
            org.springframework
            spring-context
            ${spring.version}
        
        
            org.springframework
            spring-orm
            ${spring.version}
        
        
            org.springframework
            spring-test
            ${spring.version}
        
        
            org.springframework
            spring-webmvc
            ${spring.version}
        
        
            org.aspectj
            aspectjweaver
            1.8.11
        

        
        
            org.mybatis
            mybatis
            ${mybatis.version}
        
        
            org.mybatis
            mybatis-spring
            1.3.1
        

        
        
            com.fasterxml.jackson.core
            jackson-core
            ${jackson.version}
        
        
            com.fasterxml.jackson.core
            jackson-databind
            ${jackson.version}
        
        
            com.fasterxml.jackson.core
            jackson-annotations
            ${jackson.version}
        

        
        
            commons-fileupload
            commons-fileupload
            1.3.3
        
        
            commons-io
            commons-io
            2.6
        

    

根据项目 配置 需要的 jar 包,没有的jar 就在 maven 库中去找
配置 web.xml


        index.jsp

到这一步的时候 你的项目可以测试一下,可以运行的话在进行下一步的操作

你可能感兴趣的:(maven)