分享知识 传递快乐
Spring Boot特点:
1. 创建独立的Spring应用程序,
2. 嵌入的Tomcat,无需部署WAR文件,
3. 简化Maven配置,
4. 自动配置Spring,
5. 提供生产就绪型功能,如指标,健康检查和外部配置,
6. 绝对没有代码生成和对XML没有要求配置 。
Spring Boot 常用的几个jar的说明:
spring-boot-starter:核心模块,包括自动配置支持、日志和YAML,
spring-boot-starter-test:测试模块,包括JUnit、Hamcrest、Mockito,
spring-boot-starter-web:引入Web模块,
spring-boot-starter-tomcat:添加对tomcat的支持,
spring-boot-starter-thymeleaf:默认的模板引擎。
在开发时如果要启动项目可以直接用main方法做为入口,如果要部署在tomcat下就要继承SpringBootServletInitializer类,因为Spring Boot通过继承SpringBootServletInitializer方式部署在常规tomcat下,简单的理解起到web.xml的作用。
源码:点击打开链接
如有不足或新的想法请留言--分享知识 传递快乐。
标签:tomcat,spring,boot,Boot,Spring,基本操作,starter From: https://blog.51cto.com/u_15856116/5813285