文 by / 林本托 Tip 做一个终身学习的人. Spring Boot 初体验 Spring Boot 包含了很多 start(Spring boot 中 的叫法,就是一个模块,后文统一称模块,便于理解),这些模块其实早就是 Spring Boot 大家庭的成员.这章主要介绍http://start.spring.io/,Spring Boot 提供的可用的组建,通过这个链接我们可以快速搭建一个项目. 这章主要包括以下内容: 使用 Spring Boot 模板和模块: 创建一个简单的应用:
Spring Boot建议使用这些模板引擎,避免使用JSP,若一定要使用JSP将无法实现Spring Boot的多种特性 pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> application.properties s