Spring Boot常用的maven依赖

 
    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.7.RELEASE
    

    

        
        
            org.springframework.boot
            spring-boot-starter-web
        

        
        
            jstl
            jstl
            1.2
        
        
            org.springframework.boot
            spring-boot-starter-tomcat
            provided
        
        
            org.apache.tomcat.embed
            tomcat-embed-jasper
            provided
        

        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            1.3.1
        
        
            com.alibaba
            druid
            1.1.12
        
        
            com.oracle
            ojdbc6
            6.0
        
        

        
        
            com.alibaba
            fastjson
            1.2.15
        

        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        

        
        
            org.projectlombok
            lombok
            1.18.8
            provided
        

        
        
            org.springframework.boot
            spring-boot-devtools
            true
        

        
        
            redis.clients
            jedis
            2.9.0
        
        
        
            org.apache.commons
            commons-lang3
            3.4
        

    


    
        
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    
                    true
                    
                    -Dfile.encoding=UTF-8
                
            
        
    

 

你可能感兴趣的:(Spring,Boot)