Spring Boot应用基本配置说明

本文简要介绍了Spring Boot应用中涉及到的一些基本配置,并对其进行了说明。

一、pom依赖

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

spring boot parent,此处指定version,其他的dependency中可以省略version

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

spring-boot-starter-web,囊括了web开发常用的一些依赖,包括spirng-webmvc、tomcat等

如果使用外部tomcat,则需要在pom中添加如下配置

        
	        org.springframework.boot
	        spring-boot-starter-tomcat
	        provided
	    


二、自动配置

@EnableAutoConfiguration
在主配置 Java 类上添加@EnableAutoConfiguration注解,即可启用自动配置。

如当添加了对 HSQLDB 的依赖,且应用中没有自定义数据源bean,则Spring Boot 会自动配置为HSQLDB 进行数据库操作。

@SpringBootApplication
通常主配置Java类上会添加@Configuration @EnableAutoConfiguration @ComponentScan注解,为了便于开发引入@SpringBootApplication,使用它即等同于以上三个注解,并具有他们包含的默认属性



你可能感兴趣的:(spring,boot)