spring boot+thymeleaf ,controller中返回html页面不能跳转成功?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot+thymeleaf ,controller中返回html页面不能跳转成功?相关的知识,希望对你有一定的参考价值。

controller代码如下:
@PostMapping(value = "/edit")
public String editForm(@RequestParam("name")String name,@RequestParam("zookeeperquorm")String zookeeperquorm,Model model)
System.out.println(name+"------"+zookeeperquorm);
// JSONObject jsonObject = new JSONObject();
//jsonObject.
// String name = params.get("name");
// String zookeeperquorm = params.get("zookeeperquorm");
DataVo dataVo = hbaseService.queryTableInfo(zookeeperquorm, name);
model.addAttribute("dataVo", dataVo);
return "/hbase/edit";

js中ajax调用代码如下:
$.ajax(
type: 'POST',
url: prefix+'/edit',//发送请求
data:
'name': name,
'zookeeperquorm': zookeeperquorm
,
dataType : "html",
success: function(result)
var htmlCont = result;//返回的结果页面
layer.open(
type: 1,//弹出框类型
title: '编辑',
shadeClose: false, //点击遮罩关闭层
area : ['60%' , '90%'],
shift:1,
content: htmlCont//将结果页面放入layer弹出层中
);
/*,error:function (data)
console.log("进入错误界面");
*/
);
吃出layer.open可以弹出来edit.html,这个是controller返回指向的/hbase/edit对于的代码。
application.yml配置文件:
spring:
thymeleaf:
mode: LEGACYHTML5
cache: false
prefix: classpath:/templates/
suffix: .html

现象描述:
controller的return "/hbase/edit"这个返回后页面无法解析
转到login界面http://localhost:8081/login。
按理来说layer.open中已经弹出edit.html,证明ajax返回edit.html,controller应该是解析成功html,为什么后面解析不了edit.html?

参考技术A spring为什么要推荐使用thymeleaf
应该是spring boot推荐支持,因为spring boot是快速开发,而thymeleaf又是原型即页面,所以从理念是接近的追问

你这个回答是什么问题?

参考技术B 题主解决了没有?可能是导入thymeleaf的时候导入错了,我感觉也可能是thymeleaf的网页没加或者加了网络状况不是很好。

以上是关于spring boot+thymeleaf ,controller中返回html页面不能跳转成功?的主要内容,如果未能解决你的问题,请参考以下文章

spring boot整合Thymeleaf

Spring Boot2:使用Spring Boot结合Thymeleaf模板引擎使用总结

Spring Boot(十五):spring boot+jpa+thymeleaf增删改查示例

Spring Boot 学习笔记--整合Thymeleaf

Spring Boot入门——thymeleaf模板使用

Spring Boot模板引擎Thymeleaf demo