SpringBoot2.0:访问静态页面之Hello World

1.创建SpringBoot项目

2.检查Appcalition.class的位置:

打开pom.xml,比如项目的groupId为com.gm,Application.java的位置应该在这个位置之下

SpringBoot2.0:访问静态页面之Hello World_第1张图片3.在application.properties / application.yml(需要处理结构)中配置视图参数:

高版本: spring.mvc.view.prefix=* | spring.mvc.view.suffix=.*

低版本:spring.view.prefix=* | spring.view.suffix=.*

4.在SpringBoot静态资源文件夹static下创建html

注:路径与3中配置对应

5.编写Controller

SpringBoot2.0:访问静态页面之Hello World_第2张图片

6.运行Application.java,SpringBoot默认访问端口8080,路径为:localhost:8080/demo,就可以看到页面

7.注意:

第5步中类的注解不能设置为@RestController,@RestController是Spring4.0新出的注解,效果为@Repository和@Controller注解的结合,故用@RestController在访问路径时候是以字符串返回,而不是跳转到demo.html

你可能感兴趣的:(SpringBoot)