Springboot pom.xml

    今天让我带你走进SpringBoot 的世界

关于现在的流行框架,不得不说道Spring boot,对于它而言,我个人的理解它是一个整合了很多框架而产生的一个技术果实,可以理解为跟maven一样,整合了所有的jar包一样,废话不多说,下面我即将开始自己的表演。

pom.xml

1、想要使你的项目支持web 那么就要添加web模块


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

2、 其中pom.xml文件中,拥有两个模块

spring-boot-starter            它是核心模块,包括了自动配置支持,日志,YAML;

spring-boot-starter-test      测试模块,包括了JUnit、Hamcrest、Mockito。

3、热启动,就是俗话说的热部署,在正常开发项目中已经很常见了,所以springboot 肯定是有的

 
    
        org.springframework.boot
        spring-boot-devtools
        true
    



    
        
            org.springframework.boot
            spring-boot-maven-plugin
            
                true
            
        

4、最后插一嘴,jdbc

    
      org.springframework.boot
      spring-boot-starter-jdbc
    

 

你可能感兴趣的:(SpringBoot)