Springboot 添加server.servlet.context-path相关使用总结
一、server.servlet.context-path配置的作用定义: server.servlet.context-path= # Context path of the application. 应用的上下文路径,也可以称为项目路径,是构成url地址的一部分。server.servlet.context-path不配置时,默认为 / ,如:localhost:8080/xxxxxx...
一、server.servlet.context-path配置的作用
定义: server.servlet.context-path= # Context path of the application. 应用的上下文路径,也可以称为项目路径,是构成url地址的一部分。
server.servlet.context-path不配置时,默认为 / ,如:localhost:8080/xxxxxx
当server.servlet.context-path有配置时,比如 /demo,此时的访问方式为localhost:8080/demo/xxxxxx
二、springboot 2.0变革后的配置区别
1、springboot 2.0之前,配置为 server.context-path
2、springboot 2.0之后,配置为 server.servlet.context-path
三、一个思考
原来的运营项目(已上线),配置文件添加 server.servlet.context-path 配置后,需要在thymleaf 中进行action请求的追加吗?
答案:不需要。
栗子:
前端页面采取form请求
<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 。
更多推荐
所有评论(0)