一直纠结于javaweb默认打开网页转换的问题,今天得以解决。
Java Web开始的默认页面通常都是index.jsp这个页面,如果你想要更改的话,有两种方法。
1.修改WEB-INF下的web.xml文件和tomcat下的配置文件
2.在index.jsp中直接跳转到你想到的网页。
2.
<%-- index.jsp --%>
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<title>假的主页,跳转用</title>
</head>
<body>
<jsp:forward page="Message.jsp"></jsp:forward> //这句话就是说跳转到Message.jsp页面。
</body>
</html>
<%-- Message.jsp --%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>msg</title>
</head>
<body>
<h1>Success!!</h1>
</body>
</html>
默认打开的还是index.jsp页面,但是在index页面中直接跳转到了Message.jsp(想要的页面),和直接打开Message的页面的效果一模一样,这样就相当于修改了主页啦!
标签:总结,index,21,跳转,jsp,2023,Message,页面 From: https://www.cnblogs.com/DREAM2021/p/17142214.html