intellij搭建maven+springmvc+springjdbc

intellij搭建maven+springmvc+springjdbc

Intellij 创建maven项目

C:\Users\Administrator\.m2里的Setting.xml添加

intellij搭建maven+springmvc+springjdbc_第1张图片

如果没有Setting.xml就在maven的源码中的/cof中复制过去

 新建项目

intellij搭建maven+springmvc+springjdbc_第2张图片

intellij搭建maven+springmvc+springjdbc_第3张图片intellij搭建maven+springmvc+springjdbc_第4张图片

intellij搭建maven+springmvc+springjdbc_第5张图片

build success效果

intellij搭建maven+springmvc+springjdbc_第6张图片

 

然后在右上角找到Project Structure,点击Modules,然后找到你项目下的spring,选中然后点击红色的“-”号,将其删除,然后apply 和点击OK,为了之后可以添加自己想要的spring框架

 

intellij搭建maven+springmvc+springjdbc_第7张图片

最后右击项目,给我们的项目添加框架支持,选择Add Framwork Support...

 intellij搭建maven+springmvc+springjdbc_第8张图片

将我们需要的Framwork 选上,点击OK即可

 intellij搭建maven+springmvc+springjdbc_第9张图片

在pom.xml修改为如下格式添加外部库和插件 ,

xml version="1.0" encoding="UTF-8"?>

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">
  4.0.0

  test3
  test3
  1.0-SNAPSHOT
  war

  test3 Maven Webapp
  
  http://www.example.com

  
    UTF-8
    1.7
    1.7
  

  
    
      junit
      junit
      4.11
      test
    

    
    
      org.springframework
      spring-beans
      4.3.1.RELEASE
    

    
      org.springframework
      spring-core
      4.3.1.RELEASE
    
    
      org.springframework
      spring-context
      4.3.1.RELEASE
    

    
    
      org.springframework
      spring-web
      4.3.1.RELEASE
    
    
      org.springframework
      spring-webmvc
      4.3.1.RELEASE
    

    
    
    
      javax.servlet
      jstl
      1.2
    

    
      taglibs
      standard
      1.1.2
    

    
    
      javax.servlet
      servlet-api
      2.5
    

    
    
      javax.servlet.jsp
      jsp-api
      2.2
    

    
    
      mysql
      mysql-connector-java
      5.1.6
    

    
    
      org.springframework
      spring-jdbc
      3.0.5.RELEASE
    

    
    
      com.mchange
      c3p0
      0.9.5.1
    

    
    
      org.aspectj
      aspectjweaver
      1.8.6
    

    
      org.aspectj
      aspectjrt
      1.8.6
    

    
    
      org.mybatis
      mybatis
      3.3.0
    

    
    
      org.mybatis
      mybatis-spring
      1.2.3
    
  


  
    test3
    
      
        
        
          org.eclipse.jetty
          jetty-maven-plugin
          9.3.10.v20160621
        

        
        
          org.mybatis.generator
          mybatis-generator-maven-plugin
          1.3.2
          
            true
            true
          
        
        
          org.apache.maven.plugins
          maven-compiler-plugin
          
            1.7
            1.7
          
        
        
          maven-clean-plugin
          3.0.0
        
        
        
          maven-resources-plugin
          3.0.2
        
        
          maven-compiler-plugin
          3.7.0
        
        
          maven-surefire-plugin
          2.20.1
        
        
          maven-war-plugin
          3.2.0
        
        
          maven-install-plugin
          2.5.2
        
        
          maven-deploy-plugin
          2.8.2
        
      
    
  

修改完成后出现提示:点击后将会每次更新依赖或插件时自动下载

最后一步添加一个新文件夹并将其变成 Source Root

intellij搭建maven+springmvc+springjdbc_第10张图片

 

你可能感兴趣的:(java)