关于Spring MVC
Spring MVC框架主要解决了接收请求、响应结果的相关问题。
在Spring Boot项目中,当需要使用Spring MVC框架及相关的功能时,应该添加spring-boot-starter-web
依赖项。由于spring-boot-starter-web
是基于spring-boot-starter
依赖项的,所以,spring-boot-starter-web
包含了spring-boot-starter
,在实际编码时,只需要将spring-boot-starter
改为spring-boot-starter-web
即可。
当添加了spring-boot-starter-web
依赖项后,当启动项目时,默认情况下,就会自动将当前项目编译、打包并部署到内置的Tomcat中,并启动Tomcat,默认占用8080
端口。
如果需要修改默认占用的端口号,可以在application.properties
中配置server.port
属性,例如:
# 服务端口
server.port=9080