我正在使用eclipse ee中的动态Web项目,我无法弄清楚在哪里指定主页,即我将项目部署到服务器时首先显示的页面。 提前致谢
答案 0 :(得分:0)
在web.xml
中指定欢迎文件:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<welcome-file-list>
<welcome-file>FirstJSP.jsp</welcome-file>
</welcome-file-list>
</web-app>
答案 1 :(得分:0)
index.jsp默认情况下应映射到此,或者您可以使用其他答案中提到的内容。