第一个springboot
时间: 2023-10-15 12:25:31 浏览: 109
第一个Spring Boot是通过引入`spring-boot-starter-web`来实现的。这是一个Spring Boot场景启动器,它帮助我们导入了web模块正常运行所依赖的组件。[1]
引用: spring-boot-starter-web spring-boot-starter:spring-boot场景启动器;帮我们导入了web模块正常运行所依赖的组件 。
引用: <!-- Inherit defaults from Spring Boot --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.13.RELEASE</version> </parent> 。
引用: package com.wu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * @SpringBootApplication 来标注一个主程序类,说明这是一个Spring Boot应用 */ @SpringBootApplication public class HelloWorldMainJavaApplication { public static void main(String[] args) { //spring应用启动起来 SpringApplication.run(HelloWorldMainJavaApplication.class,args); } } 。
问题:请告诉我,第一个Spring Boot是如何实现的?<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [springboot入门--第一个springboot程序](https://blog.csdn.net/ChaoticNg/article/details/114651903)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文