java 常用代码段

目录

pom.xml 的Spring支持

Maven配置国内源

settings.xml

国内maven源

Spring配置文件

Spring 注解版 配置文件


pom.xml 的Spring支持

在项⽬的 pom.xml 中添加 Spring 框架的⽀持,xml 配置如下:


    
        org.springframework
        spring-context
        5.2.3.RELEASE
    

    
        org.springframework
        spring-beans
        5.2.3.RELEASE
    

Maven配置国内源

settings.xml







  

  

  

  
  
    
  

  
  
    
  

  
  
    

    
  

  
  
   
        alimaven
        aliyun maven
        http://maven.aliyun.com/nexus/content/groups/public/
        central        
      
    
  

  
  
    

    
  

  

国内maven源


        alimaven
        aliyun maven
        http://maven.aliyun.com/nexus/content/groups/public/
        central        

Spring配置文件



    

Spring 注解版 配置文件




 

你可能感兴趣的:(Spring,java,python,前端)