SpringBoot在controller返回一个HTML页面
本人今天在弄springBoot,因为第一次接触,遇到了很多的坑,特别是返回jsp页面。因为是新手所以一个人捣鼓了很长时间。终于弄好了。现在给大家分享下。新手上路。还请大家多多指教。
首先说一下,springboot的默认页面就是将页面放在static下。
然后访问http://localhost:8080/。即可访问到页面
springboot在controller返回html页面
创建springboot项目应该会。不会的去查查。创建后。需要在pom.xml文件中添加依赖。
<!--导入html依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
添加此模板。会从templates中去找相对于的页面。
再写controller。注意的是用@controller注解不要用@restController,前者是渲染页面用的,后者是返回数据用的。贴上代码
package com.chxy.demo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
@RequestMapping("/Index")
public String Index() {
System.out.println("fff");
return "hello";
}
}
再贴上页面:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
111111111111111111111111154654545
</body>
</html>
输入http://localhost:8080/Index 显示成功
随后再将返回jsp的页面分享出来。有什么不好的地方,还请大侠指出!