配置文件
# 端口号设置 server.port: 8082 # 应用程序的上下文路径设置 server.servlet.context-path: /jmw
原生Ajax请求
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>获取应用程序上下文</title> </head> <body> <button id="btn">发送原生Ajax请求</button> </body> <script th:src="@{/js/jquery.min.js}"></script> <script th:inline="javascript" type="text/javascript"> // 通过Thymeleaf内置函数获取应用程序上下文路径 const ctxPath = [[${#httpServletRequest.getContextPath()}]]; console.log(ctxPath); // /jmw $("#btn").on("click", function() { $.get(`${ctxPath}/init/test`, function(data, status){ console.log(status); }); }); </script> </html>