在pom文件里,添加依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
参考了这个作者(zhttp://t.csdn.cn/fo5J2)的方案呀~具体是为什么,还没有去搞明白文章来源:https://www.toymoban.com/news/detail-613265.html
- Spring Boot 是在 Spring 的基础上创建一款开源框架,它提供了 spring-boot-starter-web(Web 场景启动器) 来为 Web 开发予以支持。spring-boot-starter-web 为我们提供了嵌入的 Servlet 容器以及 SpringMVC 的依赖,并为 Spring MVC 提供了大量自动配置,可以适用于大多数 Web 开发场景。
- 只要我们在 Spring Boot 项目中的 pom.xml 中引入了 spring-boot-starter-web ,即使不进行任何配置,也可以直接使用 Spring MVC 进行 Web 开发。
- 参考了这篇文章大概能知道为啥spring-boot-starter-web(Web启动器) (biancheng.net)
文章来源地址https://www.toymoban.com/news/detail-613265.html
到了这里,关于Started CityManagementApplication in 0.982 seconds (JVM running for 1.97)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!