Springboot访问html页面步骤解析

网友投稿 756 2023-05-24

Springboot访问html页面步骤解析

Springboot访问html页面步骤解析

springboot中如果想访问html页面,不每访问一个页面就写一个Controller,可以统一写一个公共的controller方法

代码

(1)引入hutool工具依赖

http://

com.xiaoleilu

hutool-all

3.3.0

(2)公共Controller

import com.xiaoleilu.hutool.util.StrUtil;

//html访问控制器

/**

* @return

*/

@RequestMapping(value = "/view/**", method = RequestMethod.GET)

public Shttp://tring html(HttpServletRequest request) {

return StrUtil.removePrefix(request.getRequestURI(), request.getContextPath() + "/view");

}

(3)访问页面路径

如页面路径在demo下,配置文件中servlet.context-path: /test

则lhttp://localhost:8081/test/view/demo/...../XXX.html

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Mybatis中Collection集合标签的使用详解
下一篇:Spring Boot如何开启并使用邮件服务
相关文章

 发表评论

暂时没有评论,来抢沙发吧~