After publishing the tomcat project, bind to the domain name and visit directly

web.xml配置
<welcome-file-list>
  		<welcome-file>index.jsp</welcome-file>
  </welcome-file-list>

index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<%@ include file="./WEB-INF/views/core/include.jsp"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>首页跳转</title>
<script src="${js}/common/jquery-3.2.1.min.js"></script>
<script>
(function ($) {
    $(document).ready(function () {
    	window.location.href="/index";//首页链接
    });
})(jQuery);
</script>
</head>
 
<body>

</body>

Guess you like

Origin blog.csdn.net/lv842586821/article/details/77979996