利用Maven构建Spring

利用Maven构建Spring

一 使用第一种方法

1.1 先配置Spring
1.1.1 第一次

利用Maven构建Spring_第1张图片

1.1.2 如果你是第二次的话,你可以

利用Maven构建Spring_第2张图片

1.2 加Maven

项目右键点击Add Framework support…

然后选择Maven就好了

二 先弄Maven

2.1

利用Maven构建Spring_第3张图片

2.2 项目中添加Spring框架

    
    org.springframework
        spring-context
        4.2.6.RELEASE
    

将上面的代码黏贴到项目pom.xml中,系统会自动下载的下载所需的Spring依赖包。

我的pom.xml的配置




  4.0.0

  com.nini
  StydyingSpring
  1.0-SNAPSHOT

  StydyingSpring
  
  http://www.example.com


  
    UTF-8
    1.7
    1.7
  

  
    
      junit
      junit
      4.11
      test
    
    
      org.springframework
      spring-context
    
  

  
    
      
        
        
          maven-clean-plugin
          3.1.0
        
        
        
          maven-resources-plugin
          3.0.2
        
        
          maven-compiler-plugin
          3.8.0
        
        
          maven-surefire-plugin
          2.22.1
        
        
          maven-jar-plugin
          3.0.2
        
        
          maven-install-plugin
          2.5.2
        
        
          maven-deploy-plugin
          2.8.2
        
        
        
          maven-site-plugin
          3.7.1
        
        
          maven-project-info-reports-plugin
          3.0.0
        
      
    
  

你可能感兴趣的:(配置,Maven)