Python 官方文档:入门教程 => 点击学习
目录SpringBoot添加server.servlet.context-pathserver.servlet.context-path配置的作用springboot 2.0变革后的
定义: server.servlet.context-path= # Context path of the application. 应用的上下文路径,也可以称为项目路径,是构成url地址的一部分。
1、springboot 2.0之前,配置为 server.context-path
2、springboot 2.0之后,配置为 server.servlet.context-path
原来的运营项目(已上线),配置文件添加 server.servlet.context-path 配置后,需要在thymleaf 中进行action请求的追加吗?
答案:不需要。
栗子:
<form th:action="@{/user/userLogin}" method="post" id="userLogin"></form>
action拦截接受方式
@Controller
@RequestMapping("/user")
public class LoginController {
@PostMapping("/userLogin")
public String userLogin(httpservletRequest request, Model model) {
原项目的基础上,追加一个配置
server: port: 8080 servlet: context-path: /demo
只需要再开始进入首页时,追加 localhost:8080/demo ,后续的thymleaf中的href和action等无需添加/demo 。
设定应用的context-path.
根据 springboot版本context-path不同:
示例:
小拓展:
1.只配置了server.servlet-path = /demo,访问路径是http://ip:port/demo/...
2.如果使用的idea,只在Tomcat配置了 Application context了,访问路径是http://ip:port/test/...
3.如果使用的idea,已经在Tomcat配置了 Application context了(下图),也配置了server.servlet-path = /demo,访问路径是http://ip:port/test/demo/...
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: Springboot如何添加server.servlet.context-path相关使用
本文链接: https://lsjlt.com/news/198055.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0