UI 给了html 的静态页面。我们要用jsp开发,不想改 文件的后缀了。怎么能让服务器把html 当成jsp处理。
jsp
.html
jsp
.jspx
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet-mapping>
<servlet-name>jsp</servlet-name>
<url-pattern>*.jsp</url-pattern>
</servlet-mapping>
在web.xml里加映射
jspservlet
*.html