Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。通过这种方式,Spring Boot致力于在蓬勃发展的快速应用开发领域(rapid application development)成为领导者的。
在以前的spring项目中,都会面对大量繁琐的配置,使用的时候基本上都是大量的复制黏贴。而Spring Boot 则能让我们在不需要过多的配置下,轻松快速地搭建Spring Web应用,开箱即用,没有代码生成,也无需XML配置,从而快速使用spring框架。
版本:java 1.8.0_51 & spring boot 1.5.4
继承 parent 父模块,spring-boot-starter-parent 模块中包含了自动配置、日志和YAML(参考:) ,使构建spring项目变得简单。
<!-- 继承 spring boot 父包--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.4.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent>
pom.xml中依赖 spring-boot-starter-web 模块,包括了Tomcat和spring-webmvc(参考:) ,不需要指定version 版本,因为父模块中已经有默认配置,如果需要指定版本可添加。
<!-- 构建web项目模块 包括了Tomcat和spring-webmvc --> <!-- spring-boot-starter-web 默认依赖了tomcat的starter 所以使得项目可以直接运行而不需要部署到tomcat中--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
pom.xml中依赖 spring-boot-starter-test 测试模块,包括JUnit、Hamcrest、Mockito
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
以上是构建简单spring boot 项目实例的详细内容。更多信息请关注PHP中文网其他相关文章!